Skip to content
This repository has been archived by the owner on Mar 19, 2022. It is now read-only.

Commit

Permalink
Merge pull request #73 from NightYoshi370/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
KunoichiZ authored Feb 19, 2021
2 parents ff57852 + 8b2d35b commit ed3cf30
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/release.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ ReleaseInfo releaseGetLatestStable() {
// Citra doesn't support HTTPc right now, so just fake a successful request
release.name = "5.2";
release.description = "- Remade the chainloader to only try to load the right payload for the pressed button. Now the only buttons which have a matching payload will actually do something during boot\r\n- Got rid of the default payload (start now boots \"start_NAME.bin\")\r\n- sel_NAME.bin is now select_NAME.bin as there are no more SFN/8.3 limitations anymore\r\n\r\nRefer to [the wiki](https://github.com/AuroraWright/Luma3DS/wiki/Installation-and-Upgrade#upgrading-from-v531) for upgrade instructions.";
release.versions.push_back(ReleaseVer{ "CITRA", "CITRA", "https://github.com/AuroraWright/Luma3DS/releases/download/v5.2/Luma3DSv5.2.7z", 143234 });
release.versions.push_back(ReleaseVer{ "CITRA", "CITRA", "https://github.com/LumaTeam/Luma3DS/releases/download/v5.2/Luma3DSv5.2.7z", 143234 });
#else

static const char* ReleaseURL = "https://api.github.com/repos/AuroraWright/Luma3DS/releases/latest";
static const char* ReleaseURL = "https://api.github.com/repos/LumaTeam/Luma3DS/releases/latest";

jsmn_parser p = {};
jsmn_init(&p);
Expand Down Expand Up @@ -121,7 +121,7 @@ ReleaseInfo releaseGetLatestHourly() {
#ifdef FAKEDL
// Citra doesn't support HTTPc right now, so just fake a successful request
hourly.name = "aaaaaaa";
hourly.versions.push_back(ReleaseVer{ "CITRA", "latest hourly (aaaaaaa)", "https://github.com/AuroraWright/Luma3DS/releases/download/v5.2/Luma3DSv5.2.7z", 143234 });*/
hourly.versions.push_back(ReleaseVer{ "CITRA", "latest hourly (aaaaaaa)", "https://github.com/LumaTeam/Luma3DS/releases/download/v5.2/Luma3DSv5.2.7z", 143234 });*/

#else

Expand Down Expand Up @@ -261,4 +261,4 @@ bool releaseGetPayload(const PayloadType payloadType, const ReleaseVer& release,
logPrintf(" [OK]\n");
std::free(fileData);
return true;
}
}

0 comments on commit ed3cf30

Please sign in to comment.