mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 11:35:38 -04:00
[librpbase, libromdata] Use https for GameTDB access everywhere.
This commit is contained in:
parent
0d3bde2915
commit
d8c181c335
@ -17,6 +17,6 @@ The configuration file is located at:
|
||||
|
||||
## Domains accessed:
|
||||
|
||||
* http://art.gametdb.com/ - Box, cover, and media scans for Nintendo
|
||||
* https://art.gametdb.com/ - Box, cover, and media scans for Nintendo
|
||||
GameCube, Wii, Wii U, DS, and 3DS games.
|
||||
* https://amiibo.life/ - Images of Nintendo amiibo products.
|
||||
|
@ -29,8 +29,8 @@ class NintendoPublishersPrivate {
|
||||
* This list is valid for most Nintendo systems.
|
||||
*
|
||||
* References:
|
||||
* - http://www.gametdb.com/Wii
|
||||
* - http://www.gametdb.com/Wii/Downloads
|
||||
* - https://www.gametdb.com/Wii
|
||||
* - https://www.gametdb.com/Wii/Downloads
|
||||
*/
|
||||
static const ThirdPartyEntry thirdPartyList[];
|
||||
|
||||
@ -76,8 +76,8 @@ class NintendoPublishersPrivate {
|
||||
* This list is valid for most Nintendo systems.
|
||||
*
|
||||
* References:
|
||||
* - http://www.gametdb.com/Wii
|
||||
* - http://www.gametdb.com/Wii/Downloads
|
||||
* - https://www.gametdb.com/Wii
|
||||
* - https://www.gametdb.com/Wii/Downloads
|
||||
* - https://wiki.nesdev.com/w/index.php/Family_Computer_Disk_System#Manufacturer_codes
|
||||
*/
|
||||
const NintendoPublishersPrivate::ThirdPartyEntry NintendoPublishersPrivate::thirdPartyList[] = {
|
||||
|
@ -29,7 +29,7 @@ class WiiUDataPrivate {
|
||||
* These games have the same publisher in all regions.
|
||||
* ID4 region byte is 'x'. (Not '\0' due to MSVC issues.)
|
||||
*
|
||||
* Reference: http://www.gametdb.com/WiiU/List
|
||||
* Reference: https://www.gametdb.com/WiiU/List
|
||||
*/
|
||||
static const WiiUDiscPublisher disc_publishers_noregion[];
|
||||
|
||||
@ -38,7 +38,7 @@ class WiiUDataPrivate {
|
||||
* These games have different publishers in different regions.
|
||||
* ID4 region byte is the original region.
|
||||
*
|
||||
* Reference: http://www.gametdb.com/WiiU/List
|
||||
* Reference: https://www.gametdb.com/WiiU/List
|
||||
*/
|
||||
static const WiiUDiscPublisher disc_publishers_region[];
|
||||
|
||||
@ -58,7 +58,7 @@ class WiiUDataPrivate {
|
||||
* These games have the same publisher in all regions.
|
||||
* ID4 region byte is 'x'. (Not '\0' due to MSVC issues.)
|
||||
*
|
||||
* Reference: http://www.gametdb.com/WiiU/List
|
||||
* Reference: https://www.gametdb.com/WiiU/List
|
||||
*/
|
||||
const WiiUDataPrivate::WiiUDiscPublisher WiiUDataPrivate::disc_publishers_noregion[] = {
|
||||
{'AAFx', '0001'}, // Bayonetta
|
||||
@ -269,7 +269,7 @@ const WiiUDataPrivate::WiiUDiscPublisher WiiUDataPrivate::disc_publishers_noregi
|
||||
* These games have different publishers in different regions.
|
||||
* ID4 region byte is the original region.
|
||||
*
|
||||
* Reference: http://www.gametdb.com/WiiU/List
|
||||
* Reference: https://www.gametdb.com/WiiU/List
|
||||
*/
|
||||
const WiiUDataPrivate::WiiUDiscPublisher WiiUDataPrivate::disc_publishers_region[] = {
|
||||
{'ABEE', '00G9'}, // Ben 10: Omniverse (NTSC-U)
|
||||
|
@ -78,7 +78,7 @@ string RomDataPrivate::getURL_GameTDB(
|
||||
const char *region, const char *gameID,
|
||||
const char *ext)
|
||||
{
|
||||
return rp_sprintf("http://art.gametdb.com/%s/%s/%s/%s%s",
|
||||
return rp_sprintf("https://art.gametdb.com/%s/%s/%s/%s%s",
|
||||
system, type, region, gameID, ext);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user