diff --git a/Extensions/ReaPack.ext b/Extensions/ReaPack.ext index 4bb759a5..9e8d6d1d 100644 --- a/Extensions/ReaPack.ext +++ b/Extensions/ReaPack.ext @@ -1,4 +1,4 @@ -@version 1.1beta3 +@version 1.1rc1 @author cfillion @description ReaPack: Package manager for REAPER @provides @@ -8,42 +8,13 @@ [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] + + filter: implement ^ and $ anchors to match start and end of string + + filter: implement NOT, OR and ( ) grouping operators à la REAPER + + manager: synchronize after enabling a repo or the auto install mode [p=1726030] Changed: - + 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) + + about repo: add ^anchors$ to when setting the browser's filter + + about: make the window user-resizable [#10] + + config: enable all repositories by default [p=1726030] + + manager: make the window bigger [#10] Fixed: - + 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] + + win32: update curl to v7.50.2 (bugfix for wine) diff --git a/src/reapack.cpp b/src/reapack.cpp index 03039bc2..974b911b 100644 --- a/src/reapack.cpp +++ b/src/reapack.cpp @@ -33,7 +33,7 @@ using namespace std; -const char *ReaPack::VERSION = "1.1beta3"; +const char *ReaPack::VERSION = "1.1rc1"; const char *ReaPack::BUILDTIME = __DATE__ " " __TIME__; #ifdef _WIN32