commit 99308dd2ea0b68bc2bac1fd49e439769319504b3 parent 33b6a1207b0aab7ca109a442833f4645fc04efa7 Author: cfillion <cfillion@users.noreply.github.com> Date: Fri, 26 Aug 2016 18:58:47 -0400 bump version to v1.1beta3 Diffstat:
M | Extensions/ReaPack.ext | | | 46 | +++++++++++++++++++++++++++++++++++++++------- |
M | src/reapack.cpp | | | 2 | +- |
2 files changed, 40 insertions(+), 8 deletions(-)
diff --git a/Extensions/ReaPack.ext b/Extensions/ReaPack.ext @@ -1,4 +1,4 @@ -@version 1.1beta2 +@version 1.1beta3 @author cfillion @description ReaPack: Package manager for REAPER @provides @@ -7,11 +7,43 @@ [win32] reaper_reapack32.dll https://github.com/cfillion/reapack/releases/download/v$version/$path [win64] reaper_reapack64.dll https://github.com/cfillion/reapack/releases/download/v$version/$path @changelog + Added: + + about repo: add "find in browser" action in the package context menu + + about: add "about {repository}" button in the package's about dialog + + about: ask whether to install all packages or update installed packages + + about: merge the about dialogs and make it modeless [p=1716746] + + synchronize: prompt to uninstall obsolete packages [#8] Changed: - + browser: change the type filter toggles to be exclusive + + about: show package descriptions in Contents tab + + about: use package description in dialog title + + allow a conflicting pkg to be installed if the other is getting uninstalled + + browser: preserve insertion order of actions + + browser: show stored description of obsolete packages + + browser: show the newest available version even if it's older than the one currently installed + + download: share dns cache and ssl sessions between connections + + index: remove ".xml" suffix from the download display name + + manager: rename option "Install new packages automatically" to "Install new packages when synchronizing" + + package: ensure package names do not contain slashes + + registry: store package descriptions offline + + richedit: stop moving the caret to the end of the document on windows + + show package descriptions in progress and report dialogs + + transaction: process uninstallation tasks before any other task + + transaction: wait for current tasks to be finished before processing new ones + + write data files directly into the Data directory (for toolbar icons) Fixed: - + browser: fix sorting by last update column when a type filter is enabled - + fix a few possible memory leaks when loading repository indexes - + fix a memory leak occuring when loading equivalent versions - + progress: prevent briefly going over 100% before closing the dialog - + report: don't always use plural in the overview line + + about repository: don't sort the version column lexicographically + + browser: always reset pin when clearing actions + + browser: don't sort the version column lexicographically + + browser: fix crash when double-clicking on an obsolete package [p=1713186] + + browser: fix display of pinned state for obsolete packages + + browser: remember scroll position when reloading the list on windows + + dialog: fix wrong amount of memory allocated for clipboard copy + + download: bypass cache when fetching index files + + download: enable all content encodings known by curl + + download: enhance reporting of download errors + + download: fix http error reporting when connecting through a proxy + + index: always re-download indexes when requested + + listview: fix Shift+F10 on Windows (bis) + + registry: accept databases written by compatible newer versions of ReaPack + + report: make Return key always close the dialog on windows + + win32: fix resource path encoding issue in some setups [p=1718542] diff --git a/src/reapack.cpp b/src/reapack.cpp @@ -33,7 +33,7 @@ using namespace std; -const char *ReaPack::VERSION = "1.1beta2"; +const char *ReaPack::VERSION = "1.1beta3"; const char *ReaPack::BUILDTIME = __DATE__ " " __TIME__; #ifdef _WIN32