Skip to content

Commit

Permalink
v2.0.6 RC1
Browse files Browse the repository at this point in the history
Bump version number, and set app numbers properly for Wii Speak depending on region.
  • Loading branch information
AyeItsHarry committed Jan 10, 2025
1 parent 2c08f1a commit cf1bf55
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions WiiLink-Patcher-CLI/WiiLink_Patcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
class WiiLink_Patcher
{
//// Build Info ////
static readonly string version = "v2.0.6 Nightly";
static readonly string version = "v2.0.6 RC1";
static readonly string copyrightYear = DateTime.Now.Year.ToString();
static readonly string buildDate = "December 23rd, 2024";
static readonly string buildTime = "3:54 PM";
static readonly string buildDate = "January 9th, 2024";
static readonly string buildTime = "9:28 PM";
static string? sdcard = DetectRemovableDrive;
static readonly string wiiLinkPatcherUrl = "https://patcher.wiilink24.com";
////////////////////
Expand Down Expand Up @@ -3851,7 +3851,13 @@ static void WiiSpeak_Patch(Region region)
};

List<string> patches = [$"WS_0_{region}",$"WS_1_{region}"];
List<string> appNums = ["00000009","0000000a"];
List<string>appNums = region switch
{
Region.USA => ["00000012","00000013"],
Region.PAL => ["00000009","0000000a"],
Region.Japan => ["00000014","00000012"],
_ => throw new NotImplementedException(),
};

PatchWC24Channel("ws", "Wii Speak Channel", 512, region, channelID, patches, appNums);
}
Expand Down

0 comments on commit cf1bf55

Please sign in to comment.