From 7d14b918f8d53929f5f98c971cb66f1ccac678df Mon Sep 17 00:00:00 2001 From: cfillion Date: Fri, 15 Feb 2019 00:42:38 -0500 Subject: [PATCH] bump version to 1.2.2rc3 --- Extensions/ReaPack.ext | 12 +++++++++--- src/reapack.cpp | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Extensions/ReaPack.ext b/Extensions/ReaPack.ext index 973c8245..1a9ac58d 100644 --- a/Extensions/ReaPack.ext +++ b/Extensions/ReaPack.ext @@ -1,5 +1,5 @@ @description ReaPack: Package manager for REAPER -@version 1.2.2rc2 +@version 1.2.2rc3 @author cfillion @donation https://www.paypal.com/cgi-bin/webscr?business=T3DEWBQJAV7WL&cmd=_donations¤cy_code=CAD&item_name=ReaPack%3A+Package+manager+for+REAPER @provides @@ -10,5 +10,11 @@ [linux32] reaper_reapack32.so https://github.com/cfillion/reapack/releases/download/v$version/$path [linux64] reaper_reapack64.so https://github.com/cfillion/reapack/releases/download/v$version/$path @changelog - • Add the public ReaTeam/Extensions repository to the default configuration - • Fix a memory corruption bug from v1.2.2rc when an operation completes on Windows 32-bit + Added: + • implement SHA-256 checksum verification for downloaded files + • browser: add "Synchronize packages" to the menu [p=2084579] + • browser: add "Upload packages" action to the menu opening https://reapack.com/upload + • receipt: annotate installation type and previous version + + Fixed: + • import: fix possible crash after downloading indexes diff --git a/src/reapack.cpp b/src/reapack.cpp index c2bc825e..0c68d2b3 100644 --- a/src/reapack.cpp +++ b/src/reapack.cpp @@ -38,7 +38,7 @@ using namespace std; -const char *ReaPack::VERSION = "1.2.2rc2"; +const char *ReaPack::VERSION = "1.2.2rc3"; const char *ReaPack::BUILDTIME = __DATE__ " " __TIME__; ReaPack *ReaPack::s_instance = nullptr;