diff --git a/resources/settings.yaml b/resources/settings.yaml index 402ea130..ae6e8c74 100644 --- a/resources/settings.yaml +++ b/resources/settings.yaml @@ -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 diff --git a/src/backend/game.cpp b/src/backend/game.cpp index 10eba6a8..909f7509 100644 --- a/src/backend/game.cpp +++ b/src/backend/game.cpp @@ -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."); diff --git a/src/backend/generators.h b/src/backend/generators.h index 4841b927..47c208ad 100644 --- a/src/backend/generators.h +++ b/src/backend/generators.h @@ -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;