From 9d2ec485ce237ca144dc84d822a9963e57a90fff Mon Sep 17 00:00:00 2001 From: cfillion Date: Thu, 14 Dec 2017 11:31:49 -0500 Subject: [PATCH] bump version to 1.2.1 --- Extensions/ReaPack.ext | 14 ++------------ src/reapack.cpp | 2 +- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/Extensions/ReaPack.ext b/Extensions/ReaPack.ext index 35fe7779..a29709b9 100644 --- a/Extensions/ReaPack.ext +++ b/Extensions/ReaPack.ext @@ -1,5 +1,5 @@ @description ReaPack: Package manager for REAPER -@version 1.2.1beta +@version 1.2.1 @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 @@ -11,14 +11,4 @@ [linux64] reaper_reapack64.so https://github.com/cfillion/reapack/releases/download/v$version/$path @changelog Fixed: - * don't open the progress dialog while a modal dialog is shown [p=1920318] - * fix list desynchronisation when removing rows (eg. uninstalling repositories) - * fix possible crash when synchronizing a repository from about dialog while the obsolete prompt is displayed - * fix the about dialog sometime reloading multiple times in a row - * ignore '.' and do Windows absolute path detection logic when parsing the last or only path segment [p=1919963] - * use CRLF as newline separator when copying multiple values on Windows - - Changed: - * don't convert the resource path given by REAPER 5.70+ from system default ANSI code page to UTF-8 on Windows [p=1921620] - * restore behavior of always enabling existing repositories on re-import - * synchronize when changing the URL of a repository and the autoinstall setting is enabled + * manager: fix the Refresh action not running the queued tasks right away diff --git a/src/reapack.cpp b/src/reapack.cpp index debe1a00..7540517e 100644 --- a/src/reapack.cpp +++ b/src/reapack.cpp @@ -37,7 +37,7 @@ using namespace std; -const char *ReaPack::VERSION = "1.2.1beta"; +const char *ReaPack::VERSION = "1.2.1"; const char *ReaPack::BUILDTIME = __DATE__ " " __TIME__; ReaPack *ReaPack::s_instance = nullptr;