diff --git a/Changelog b/Changelog index 8566bddc1..b544e8846 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,14 @@ +* Wed Nov 22 2017 - sledgehammer999 - v4.0.1 + - BUGFIX: Fix crash on opening torrent/magnet (uninitialized pointer). Closes #7739 #7723. (sledgehammer999) + - BUGFIX: Enable preferences Apply button when ip banlist is modified (Thomas Piccirello) + - BUGFIX: Allow drag-n-drop magnet links to mainwindow. Closes #7742. (Chocobo1) + - BUGFIX: Fix crash when aborting a torrent creation process. Closes #7783. (Chocobo1) + - BUGFIX: Correctly check if torrent passed during application start already exists. (sledgehammer999) + - WEBUI: Add ip subnet whitelist for bypassing webui auth (Thomas Piccirello) + - WEBUI: Fix logo missing in login page (Chocobo1) + - COSMETIC: Fix english typo. (sledgehammer999) + - OTHER: cmake: qtsingleapplication should always be built statically (luigino) + * Mon Nov 20 2017 - sledgehammer999 - v4.0.0 - FEATURE: Change qbittorrent logo. Issue #6467. (HVS, Atif Afzal, sledgehammer999) - FEATURE: New icon theme with SVG source, so we can scale it appropriately in the future. (Bert Verhelst) diff --git a/dist/mac/Info.plist b/dist/mac/Info.plist index 7ff55bebf..3fbfd66a2 100644 --- a/dist/mac/Info.plist +++ b/dist/mac/Info.plist @@ -45,7 +45,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 4.0.0 + 4.0.1 CFBundleSignature qBit CFBundleExecutable diff --git a/dist/windows/options.nsi b/dist/windows/options.nsi index 0029485e0..50b5b17cc 100644 --- a/dist/windows/options.nsi +++ b/dist/windows/options.nsi @@ -27,7 +27,7 @@ XPStyle on !define CSIDL_LOCALAPPDATA '0x1C' ;Local Application Data path ; Program specific -!define PROG_VERSION "4.0.0" +!define PROG_VERSION "4.0.1" !define MUI_FINISHPAGE_RUN !define MUI_FINISHPAGE_RUN_FUNCTION PageFinishRun diff --git a/version.pri b/version.pri index 80ba4568f..4037942d7 100644 --- a/version.pri +++ b/version.pri @@ -4,7 +4,7 @@ PROJECT_NAME = qbittorrent # Define version numbers here VER_MAJOR = 4 VER_MINOR = 0 -VER_BUGFIX = 0 +VER_BUGFIX = 1 VER_BUILD = 0 VER_STATUS = # Should be empty for stable releases!