diff options
| author | JosJuice <josjuice@gmail.com> | 2026-06-22 08:24:24 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2026-06-22 08:28:51 +0200 |
| commit | d202fd07d2a0a244fa43941fd80ec9aa4fa05476 (patch) | |
| tree | da661b8470ff301b9914b794f29709dec41f67ee /Source/Core | |
| parent | 5f011709b78c516c80e251c7752e70202af7330e (diff) | |
Use redump.info instead of redump.org
All the staff of Redump (except the absentee sysadmin) have decided to
start a new version of the website at redump.info. It has every disc
from the old site, it has HTTPS, it isn't buckling under the load of AI
scrapers, and moving forward, all adding and verifying of discs is going
to be happening on the new website only. Let's move over.
I've taken the unusual step of updating the translation files manually.
This is because we're very close to a release and because the change is
simple enough that I feel confident about making the change to languages
I don't speak. (I double checked that the Korean translation doesn't
ever follow "Redump.org" by a particle that has a different form
depending on whether there's a final consonant.)
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 14 | ||||
| -rw-r--r-- | Source/Core/DolphinQt/Config/VerifyWidget.cpp | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 29bd38c665..d7956fb617 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -96,7 +96,7 @@ void RedumpVerifier::Start(const Volume& volume) switch (download_state->status) { case DownloadStatus::FailButOldCacheAvailable: - ERROR_LOG_FMT(DISCIO, "Failed to fetch data from Redump.org, using old cached data instead"); + ERROR_LOG_FMT(DISCIO, "Failed to fetch data from Redump.info, using old cached data instead"); [[fallthrough]]; case DownloadStatus::Success: return ScanDatfile(ReadDatfile(system), system); @@ -107,7 +107,7 @@ void RedumpVerifier::Start(const Volume& volume) case DownloadStatus::Fail: default: - m_result = {Status::Error, Common::GetStringT("Failed to connect to Redump.org")}; + m_result = {Status::Error, Common::GetStringT("Failed to connect to Redump.info")}; return {}; } }); @@ -127,7 +127,7 @@ RedumpVerifier::DownloadStatus RedumpVerifier::DownloadDatfile(const std::string Common::HttpRequest request; const std::optional<std::vector<u8>> result = - request.Get("http://redump.org/datfile/" + system + "/serial,version", + request.Get("https://redump.info/datfile/" + system + "/serial,version", {{"User-Agent", Common::GetScmRevStr()}}); const std::string output_path = GetPathForSystem(system); @@ -219,7 +219,7 @@ std::vector<RedumpVerifier::PotentialMatch> RedumpVerifier::ScanDatfile(std::spa pugi::xml_document doc; if (!doc.load_buffer(data.data(), data.size())) { - m_result = {Status::Error, Common::GetStringT("Failed to parse Redump.org data")}; + m_result = {Status::Error, Common::GetStringT("Failed to parse Redump.info data")}; return {}; } @@ -317,8 +317,8 @@ std::vector<RedumpVerifier::PotentialMatch> RedumpVerifier::ScanDatfile(std::spa "Serial and/or version data is missing from {0}\n" "Please append \"{1}\" (without the quotes) to the datfile URL when downloading\n" "Example: {2}", - GetPathForSystem(system), "serial,version", "http://redump.org/datfile/gc/serial,version"); - m_result = {Status::Error, Common::GetStringT("Failed to parse Redump.org data")}; + GetPathForSystem(system), "serial,version", "http://redump.info/datfile/gc/serial,version"); + m_result = {Status::Error, Common::GetStringT("Failed to parse Redump.info data")}; return {}; } @@ -1389,7 +1389,7 @@ void VolumeVerifier::Finish() else { m_result.summary_text = - Common::GetStringT("This is a good dump according to Redump.org, but Dolphin has found " + Common::GetStringT("This is a good dump according to Redump.info, but Dolphin has found " "problems. This might be a bug in Dolphin."); } return; diff --git a/Source/Core/DolphinQt/Config/VerifyWidget.cpp b/Source/Core/DolphinQt/Config/VerifyWidget.cpp index b5814bb192..7472c16d55 100644 --- a/Source/Core/DolphinQt/Config/VerifyWidget.cpp +++ b/Source/Core/DolphinQt/Config/VerifyWidget.cpp @@ -84,7 +84,7 @@ void VerifyWidget::CreateWidgets() if (DiscIO::IsDisc(m_volume->GetVolumeType())) { std::tie(m_redump_checkbox, m_redump_line_edit) = - AddHashLine(m_redump_layout, tr("Redump.org Status:")); + AddHashLine(m_redump_layout, tr("Redump.info Status:")); m_redump_checkbox->setChecked(CanVerifyRedump()); UpdateRedumpEnabled(); } |
