From 1d596225e5fd5e200aa94313234cc4a61163207a Mon Sep 17 00:00:00 2001 From: Kurt Date: Sat, 24 Oct 2020 11:59:35 -0700 Subject: [PATCH] Update 20.10.24 - Crown Tundra Update mgdb with latest from the Events Gallery. Handle nullable warnings for release build. --- PKHeX.Core/Resources/byte/wc8.pkl | Bin 200880 -> 203760 bytes PKHeX.WinForms/PKHeX.WinForms.csproj | 2 +- PKHeX.WinForms/Program.cs | 6 +++--- PKHeX.WinForms/Resources/text/changelog.txt | 15 ++++++++++++++- README.md | 4 ++-- 5 files changed, 20 insertions(+), 7 deletions(-) diff --git a/PKHeX.Core/Resources/byte/wc8.pkl b/PKHeX.Core/Resources/byte/wc8.pkl index bcf75d02c83f337026f323f70590416a9dc2ee87..a4db57af2677d0f933116d961c7dec05ec667054 100644 GIT binary patch delta 193 zcmdn6kmtj8o(&SZ>|5Iy8GvB3;ndYkEDQ`is+0FAO0jQ472Q60^FN(ik2T`h7#Ns= zkP)PZ7o-mY_CL`|gt3`4vfoWK{Ik7>lTnP3k!AW~F2+t1|3;WJ14BFxL;kB-;V^_1 UYzWio2kqws7`LAjV0!c)0Mt$^ivR!s delta 24 gcmeycooB;Bo(&SZn|Bx;c-$@_!?;~ShUvzC0F8wT#sB~S diff --git a/PKHeX.WinForms/PKHeX.WinForms.csproj b/PKHeX.WinForms/PKHeX.WinForms.csproj index 8293ffd7ba8..da0dee6fb07 100644 --- a/PKHeX.WinForms/PKHeX.WinForms.csproj +++ b/PKHeX.WinForms/PKHeX.WinForms.csproj @@ -12,7 +12,7 @@ Resources\Icon.ico PKHeX.WinForms.Program PKHeX - 20.10.10 + 20.10.24 8 enable diff --git a/PKHeX.WinForms/Program.cs b/PKHeX.WinForms/Program.cs index 5e3872afa98..93d74da04a3 100644 --- a/PKHeX.WinForms/Program.cs +++ b/PKHeX.WinForms/Program.cs @@ -81,7 +81,7 @@ private static void CurrentDomain_UnhandledException(object sender, UnhandledExc } } - private static void HandleReportingException(Exception ex, Exception reportingException) + private static void HandleReportingException(Exception? ex, Exception reportingException) { if (reportingException is FileNotFoundException x && x.FileName.StartsWith("PKHeX.Core")) { @@ -104,7 +104,7 @@ private static void HandleReportingException(Exception ex, Exception reportingEx /// /// /// - private static bool EmergencyErrorLog(Exception originalException, Exception errorHandlingException) + private static bool EmergencyErrorLog(Exception? originalException, Exception errorHandlingException) { try { @@ -120,7 +120,7 @@ private static bool EmergencyErrorLog(Exception originalException, Exception err return true; } - private static bool IsOldPkhexCorePresent(Exception ex) + private static bool IsOldPkhexCorePresent(Exception? ex) { return ex is MissingMethodException && File.Exists("PKHeX.Core.dll") diff --git a/PKHeX.WinForms/Resources/text/changelog.txt b/PKHeX.WinForms/Resources/text/changelog.txt index 6a4c9554304..1db1d29ce71 100644 --- a/PKHeX.WinForms/Resources/text/changelog.txt +++ b/PKHeX.WinForms/Resources/text/changelog.txt @@ -1,7 +1,20 @@ PKHeX - By Kaphotics http://projectpokemon.org/pkhex/ -20/10/10 - New Update: +20/10/24 - New Update: + - Introducing Crown Tundra support! Thanks @SciresM, @sora10pls, @architdate, @Lusamine, @Bappsack, and @ReignOfComputer for troubleshooting prior to release! + - Legality: + - - Changed: New checking rules for all added content in the latest DLC. + - - Added: More Gen1/2-era Event Data has been added, along with shiny checks. Thanks @ShadowMario3! + - - Fixed: Gen5 PID bit checking for static encounters now gets flagged correctly. Thanks @LegoFigure11 && Princess Emily#4650! + - - Fixed: Gen3 ability bit checking is now done for Gen3 format PKM files. + - Added: Crown Tundra Raid Seed / Detail editor; separate from the mainland raids. + - Added: Crown Tundra Pokédex editing is now available in the same Pokédex editor. Keep in mind that the game uses the first dex that has the Species-Form. + - Changed: Suggested encounters now try to match the current AltForm. Thanks @CScorpion-h! + - Changed: Nullable compiler checks enabled for PKHeX.WinForms; all sub-projects now have this feature enabled. + - Updated: Spanish GUI localization files updated. Thanks @XxPhoenix1996xX! + +20/10/10 - New Update: (44027) [3091107] - Added: Pokémon Stadium save file support! - - Supports all 3 game types: Pocket Monsters Stadium, Pokémon Stadium, and Pokémon Stadium 2. - - Added a new PKM format: SK2. Special format used by Stadium 2, different from PK2. diff --git a/README.md b/README.md index 14b303bcb48..39c4653d875 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Pokémon core series save editor, programmed in [C#](https://en.wikipedia.org/wi Supports the following files: * Save files ("main", \*.sav, \*.dsv, \*.dat, \*.gci, \*.bin) * GameCube Memory Card files (\*.raw, \*.bin) containing GC Pokémon savegames. -* Individual Pokémon entity files (.pk\*, \*.ck3, \*.xk3, \*.bk4, \*.pb7) +* Individual Pokémon entity files (.pk\*, \*.ck3, \*.xk3, \*.pb7, \*.sk2, \*.bk4) * Mystery Gift files (\*.pgt, \*.pcd, \*.pgf, .wc\*) including conversion to .pk\* * Importing GO Park entities (\*.gp1) including conversion to .pb7 * Importing teams from Decrypted 3DS Battle Videos @@ -24,7 +24,7 @@ PKHeX expects save files that are not encrypted with console-specific keys. Use ## Screenshots -![Main Window](https://i.imgur.com/MLaQkqx.png) +![Main Window](https://i.imgur.com/A0Mmy0F.png) ## Building