From 2d9f9d159ee03668af7f46b292299e4bf968b965 Mon Sep 17 00:00:00 2001 From: claudi Date: Fri, 20 Feb 2026 08:50:58 +0100 Subject: [PATCH 1/2] Bump version to 0.6.0 in configuration and source files --- .env.example | 2 +- CHANGELOG.md | 8 ++++++++ src/webdrop_bridge/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index e4d0244..9d03161 100644 --- a/.env.example +++ b/.env.example @@ -2,7 +2,7 @@ # Application APP_NAME=WebDrop Bridge -APP_VERSION=0.5.0 +APP_VERSION=0.6.0 # Web App WEBAPP_URL=file:///./webapp/index.html diff --git a/CHANGELOG.md b/CHANGELOG.md index d9b2080..ff942ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [0.6.0] - 2026-02-20 + +### Added + +### Changed + +### Fixed + # Changelog All notable changes to WebDrop Bridge will be documented in this file. diff --git a/src/webdrop_bridge/__init__.py b/src/webdrop_bridge/__init__.py index 0555873..b6a4335 100644 --- a/src/webdrop_bridge/__init__.py +++ b/src/webdrop_bridge/__init__.py @@ -1,6 +1,6 @@ """WebDrop Bridge - Qt-based desktop application for intelligent drag-and-drop file handling.""" -__version__ = "0.5.0" +__version__ = "0.6.0" __author__ = "WebDrop Team" __license__ = "MIT" From 14dac17024a13e6441449f651c50a31ee76a7e47 Mon Sep 17 00:00:00 2001 From: claudi Date: Fri, 20 Feb 2026 08:55:52 +0100 Subject: [PATCH 2/2] Update CHANGELOG for version 0.6.0 with new features, enhancements, and fixes --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff942ab..88df2b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,25 @@ ## [0.6.0] - 2026-02-20 ### Added +- **UI Enhancements** + - Web source configuration tab in settings dialog for URL mapping management + - Enhanced about dialog with product description and contact information + +- **Build & Distribution** + - Executable versioning support for Windows builds + - Desktop shortcut creation in WiX installer + - Support for 64-bit components in MSI installer (fix) ### Changed +- Refactored logging configuration to use AppData directory (Windows) instead of application root +- Enhanced Windows installer with improved UI and error reporting +- Improved code structure and readability across multiple modules +- Refactored version syncing script with better Unicode handling ### Fixed +- Fixed import order in settings_dialog.py (QTabWidget positioning) +- Improved error reporting in Windows installer linking +- Enhanced Unicode handling in build scripts # Changelog