reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 9e52271d428f27ca07716255897b5cf63b8e22fd
parent 719ff064748e141ff0b92ecaaee88d1b2db8c3d6
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Mon, 19 Dec 2016 17:57:49 -0500

config: add ReaTeam/LangPacks to the default repositories

Diffstat:
Msrc/config.cpp | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/config.cpp b/src/config.cpp @@ -94,6 +94,8 @@ void Config::restoreDefaultRemotes() "https://github.com/ReaTeam/JSFX/raw/master/index.xml"}, {"ReaTeam Themes", "https://github.com/ReaTeam/Themes/raw/master/index.xml"}, + {"ReaTeam LangPacks", + "https://github.com/ReaTeam/LangPacks/raw/master/index.xml"}, {"MPL Scripts", "https://github.com/MichaelPilyavskiy/ReaScripts/raw/master/index.xml"}, {"X-Raym Scripts", @@ -110,7 +112,8 @@ void Config::migrate() switch(version) { case 0: // v1.0 - case 1: // v1.1 + case 1: // v1.1rc3 + case 2: // v1.1 m_isFirstRun = true; restoreDefaultRemotes(); break; @@ -121,7 +124,7 @@ void Config::migrate() return; }; - m_version = 2; + m_version = 3; write(); }