Updated masterlist URLs to point to new repositories.

This commit is contained in:
WrinklyNinja
2013-09-16 10:30:23 +01:00
parent 3a86206de3
commit ebd7e40aab
3 changed files with 10 additions and 10 deletions
+5 -5
View File
@@ -16,7 +16,7 @@ Games:
name: "TES IV: Oblivion"
type: Oblivion
master: Oblivion.esm
url: http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-oblivion/masterlist.yaml
url: https://github.com/boss-developers/boss-oblivion.git
path: ~
registry: Software\Bethesda Softworks\Oblivion\Installed Path
@@ -24,7 +24,7 @@ Games:
name: "TES V: Skyrim"
type: Skyrim
master: Skyrim.esm
url: http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-skyrim/masterlist.yaml
url: https://github.com/boss-developers/boss-skyrim.git
path: ~
registry: Software\Bethesda Softworks\Skyrim\Installed Path
@@ -32,7 +32,7 @@ Games:
name: Fallout 3
type: Fallout3
master: Fallout3.esm
url: http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-fallout/masterlist.yaml
url: https://github.com/boss-developers/boss-fallout3.git
path: ~
registry: Software\Bethesda Softworks\Fallout3\Installed Path
@@ -40,7 +40,7 @@ Games:
name: "Fallout: New Vegas"
type: FalloutNV
master: FalloutNV.esm
url: http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-fallout-nv/masterlist.yaml
url: https://github.com/boss-developers/boss-fallout-new-vegas.git
path: ~
registry: Software\Bethesda Softworks\FalloutNV\Installed Path
@@ -48,6 +48,6 @@ Games:
name: Nehrim - At Fate's Edge
type: Oblivion
master: Nehrim.esm
url: http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-oblivion/masterlist.yaml
url: https://github.com/boss-developers/boss-oblivion.git
path: ~
registry: Software\Microsoft\Windows\CurrentVersion\Uninstall\Nehrim - At Fate's Edge_is1
+4 -4
View File
@@ -68,28 +68,28 @@ namespace boss {
bossFolderName = "Oblivion";
_masterFile = "Oblivion.esm";
espm::InitPredefinedSettings("Oblivion", espm_settings);
_masterlistURL = "http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-oblivion/masterlist.yaml";
_masterlistURL = "https://github.com/boss-developers/boss-oblivion.git";
} else if (Id() == g_game_tes5) {
_name = "TES V: Skyrim";
registryKey = "Software\\Bethesda Softworks\\Skyrim\\Installed Path";
bossFolderName = "Skyrim";
_masterFile = "Skyrim.esm";
espm::InitPredefinedSettings("Skyrim", espm_settings);
_masterlistURL = "http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-skyrim/masterlist.yaml";
_masterlistURL = "https://github.com/boss-developers/boss-skyrim.git";
} else if (Id() == g_game_fo3) {
_name = "Fallout 3";
registryKey = "Software\\Bethesda Softworks\\Fallout3\\Installed Path";
bossFolderName = "Fallout3";
_masterFile = "Fallout3.esm";
espm::InitPredefinedSettings("Fallout3", espm_settings);
_masterlistURL = "http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-fallout/masterlist.yaml";
_masterlistURL = "https://github.com/boss-developers/boss-fallout3.git";
} else if (Id() == g_game_fonv) {
_name = "Fallout: New Vegas";
registryKey = "Software\\Bethesda Softworks\\FalloutNV\\Installed Path";
bossFolderName = "FalloutNV";
_masterFile = "FalloutNV.esm";
espm::InitPredefinedSettings("FalloutNV", espm_settings);
_masterlistURL = "http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-fallout-nv/masterlist.yaml";
_masterlistURL = "https://github.com/boss-developers/boss-fallout-new-vegas.git";
} else
throw error(error::invalid_args, "Invalid game ID supplied.");
+1 -1
View File
@@ -577,7 +577,7 @@ namespace boss {
games.push_back(Game(g_game_tes5));
games.push_back(Game(g_game_fo3));
games.push_back(Game(g_game_fonv));
games.push_back(Game(g_game_tes4, "Nehrim").SetDetails("Nehrim - At Fate's Edge", "Nehrim.esm", "http://better-oblivion-sorting-software.googlecode.com/svn/data/boss-nehrim/masterlist.yaml", "", "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Nehrim - At Fate's Edge_is1"));
games.push_back(Game(g_game_tes4, "Nehrim").SetDetails("Nehrim - At Fate's Edge", "Nehrim.esm", "https://github.com/boss-developers/boss-oblivion.git", "", "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\Nehrim - At Fate's Edge_is1"));
root["Games"] = games;