Skip to content

Commit

Permalink
Update 20.10.24 - Crown Tundra
Browse files Browse the repository at this point in the history
Update mgdb with latest from the Events Gallery.

Handle nullable warnings for release build.
  • Loading branch information
kwsch committed Oct 24, 2020
1 parent 5cdf8db commit 1d59622
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
Binary file modified PKHeX.Core/Resources/byte/wc8.pkl
Binary file not shown.
2 changes: 1 addition & 1 deletion PKHeX.WinForms/PKHeX.WinForms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ApplicationIcon>Resources\Icon.ico</ApplicationIcon>
<StartupObject>PKHeX.WinForms.Program</StartupObject>
<AssemblyName>PKHeX</AssemblyName>
<Version>20.10.10</Version>
<Version>20.10.24</Version>
<LangVersion>8</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions PKHeX.WinForms/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
{
Expand All @@ -104,7 +104,7 @@ private static void HandleReportingException(Exception ex, Exception reportingEx
/// </summary>
/// <param name="originalException"></param>
/// <param name="errorHandlingException"></param>
private static bool EmergencyErrorLog(Exception originalException, Exception errorHandlingException)
private static bool EmergencyErrorLog(Exception? originalException, Exception errorHandlingException)
{
try
{
Expand All @@ -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")
Expand Down
15 changes: 14 additions & 1 deletion PKHeX.WinForms/Resources/text/changelog.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 1d59622

Please sign in to comment.