commit 8f8730c69f311094e2b449f546d14e4fca7c037c
parent a7adcdf780e77c4f8fc9a3854f961abcc38c33ab
Author: cfillion <cfillion@users.noreply.github.com>
Date: Fri, 12 Oct 2018 06:04:16 -0400
add ReaTeam/Extensions to the default configuration
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/config.cpp b/src/config.cpp
@@ -104,6 +104,9 @@ void Config::restoreDefaultRemotes()
"https://github.com/ReaTeam/Themes/raw/master/index.xml"},
{"ReaTeam LangPacks",
"https://github.com/ReaTeam/LangPacks/raw/master/index.xml"},
+ {"ReaTeam Extensions",
+ "https://github.com/ReaTeam/Extensions/raw/master/index.xml"},
+
{"MPL Scripts",
"https://github.com/MichaelPilyavskiy/ReaScripts/raw/master/index.xml"},
{"X-Raym Scripts",
@@ -122,6 +125,7 @@ void Config::migrate()
case 0: // v1.0
case 1: // v1.1rc3
case 2: // v1.1
+ case 3: // v1.2rc2: added ReaTeam/Extensions
m_isFirstRun = true;
restoreDefaultRemotes();
break;
@@ -132,7 +136,7 @@ void Config::migrate()
return;
};
- m_version = 3;
+ m_version = 4;
write();
}