From 2fb9344407908eb332f25bfbf023094a35fc5a8c Mon Sep 17 00:00:00 2001 From: cfillion Date: Mon, 6 Jun 2016 00:49:34 -0400 Subject: [PATCH] bump version to v1.0rc2 --- Extensions/ReaPack.ext | 48 +++++++++++++++--------------------------- src/reapack.cpp | 2 +- 2 files changed, 18 insertions(+), 32 deletions(-) diff --git a/Extensions/ReaPack.ext b/Extensions/ReaPack.ext index 24f2f359..890ebd20 100644 --- a/Extensions/ReaPack.ext +++ b/Extensions/ReaPack.ext @@ -1,38 +1,24 @@ -@version 1.0rc1 +@version 1.0rc2 @author cfillion -@provides - [darwin32] reaper_reapack32.dylib https://github.com/cfillion/reapack/releases/download/v$version/$path - [darwin64] reaper_reapack64.dylib https://github.com/cfillion/reapack/releases/download/v$version/$path - [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: - + implement pinning packages to current version (aka ignore updates) - + manager: add copy url action in the context menu - + manager: add refresh action in the context menu - + show a message box if critical api functions cannot be imported - + support multiple main (registered in Action list) files per package + + browser: implement Ctrl+A, Ctrl+Shift+A and Ctrl+C shortcuts + + manager: implement Ctrl+A, Ctrl+Shift+A and Ctrl+C shortcuts + + version: support v0.0 and lesser -- Changed: - + browser: avoid reloading indexes unless they were updated by the transaction - + browser: show 'R' status instead of 'U' for queued uninstallation - + ignore newer pre+releases when updating from a pre+release if a newer stable exists - + import: save the downloaded index in the cache - + manager: remember selection when reloading the list - + pkg contents: mark main files with an asterisk - + progress: increase dialog display timeout to 100ms - + progress: start couting downloads at 1 (> 0%) - + task: better error message when install renaming step fails + + about: annotate main files with an asterisk + + browser: minor UI tweaks + + browser: restore actions button + + manager: add browse packages button -- Fixed: - + browser: fix a crash when selecting a version after a list refresh - + browser: initialize the display filter button label before loading the pkg list - + don't repeat "transaction cannot be created" errors for every task - + fix a possible buffer overflow on windows - + fix typos in the message shown if a transaction cannot be created - + manager: fix typo in confirmation dialog - + manager: restore enabled/disabled state when cancelling queued uninstallations - + report download errors when force+refreshing indexes - + transaction: don't forget package when uninstallation fails - + transaction: don't try to register empty file names - + version: improve validation + + revert "browser: avoid reloading indexes unless they were updated by the transaction" + + transaction: fix registration of scripts embedded in non-script packages + + transaction: fix removal of obsolete files + + transaction: unregister obsolete main files +@provides + [darwin32] reaper_reapack32.dylib https://github.com/cfillion/reapack/releases/download/v$version/$path + [darwin64] reaper_reapack64.dylib https://github.com/cfillion/reapack/releases/download/v$version/$path + [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 diff --git a/src/reapack.cpp b/src/reapack.cpp index 81995dd4..3f47622c 100644 --- a/src/reapack.cpp +++ b/src/reapack.cpp @@ -33,7 +33,7 @@ using namespace std; -const char *ReaPack::VERSION = "1.0rc1"; +const char *ReaPack::VERSION = "1.0rc2"; const char *ReaPack::BUILDTIME = __DATE__ " " __TIME__; #ifdef _WIN32