commit d9757e8fab7baa7738097ef91b0d76d51eea6647
parent 36d7d4ec923b48c28177e232e100312a1bff6885
Author: cfillion <cfillion@users.noreply.github.com>
Date: Thu, 14 Dec 2017 09:32:40 -0500
REAPER 5.65 was released as 5.70
Diffstat:
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Extensions/ReaPack.ext b/Extensions/ReaPack.ext
@@ -19,6 +19,6 @@
* use CRLF as newline separator when copying multiple values on Windows
Changed:
- * don't convert the resource path given by REAPER 5.65+ from system default ANSI code page to UTF-8 on Windows [p=1921620]
+ * 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
diff --git a/index.xml b/index.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<index version="1" commit="bf09ebe9ef2b13da9eb3243d55b78c3405910ad8" name="ReaPack">
+<index version="1" commit="74deb3f85e3f1eb1df5a292d0d39feb6437fabe8" name="ReaPack">
<category name="Extensions">
<reapack name="ReaPack.ext" type="extension" desc="ReaPack: Package manager for REAPER">
<metadata>
@@ -615,7 +615,7 @@ The curated list of changes between ReaPack v1.1 and v1.2 is available at <https
* use CRLF as newline separator when copying multiple values on Windows
Changed:
-* don't convert the resource path given by REAPER 5.65+ from system default ANSI code page to UTF-8 on Windows [p=1921620]
+* 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]]></changelog>
<source platform="darwin32" file="reaper_reapack32.dylib">https://github.com/cfillion/reapack/releases/download/v1.2.1beta/reaper_reapack32.dylib</source>
diff --git a/src/reapack.cpp b/src/reapack.cpp
@@ -71,7 +71,7 @@ Path ReaPack::resourcePath()
{
#ifdef _WIN32
// convert from the current system codepage to UTF-8
- if(atof(GetAppVersion()) < 5.65)
+ if(atof(GetAppVersion()) < 5.70)
return Win32::narrow(Win32::widen(GetResourcePath(), CP_ACP));
#endif