diff --git a/Directory.Build.props b/Directory.Build.props index 755a340717b..b04ad423fbe 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - 24.07.27 + 24.11.11 12 enable en diff --git a/PKHeX.Core/Resources/legality/mgdb/wb7full.pkl b/PKHeX.Core/Resources/legality/mgdb/wb7full.pkl index 4a078f3dcfa..970f9376451 100644 Binary files a/PKHeX.Core/Resources/legality/mgdb/wb7full.pkl and b/PKHeX.Core/Resources/legality/mgdb/wb7full.pkl differ diff --git a/PKHeX.Core/Resources/legality/mgdb/wc9.pkl b/PKHeX.Core/Resources/legality/mgdb/wc9.pkl index 874b60aa3b6..0d83799d59a 100644 Binary files a/PKHeX.Core/Resources/legality/mgdb/wc9.pkl and b/PKHeX.Core/Resources/legality/mgdb/wc9.pkl differ diff --git a/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl b/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl index 69c1c18236e..55ad6a39493 100644 Binary files a/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl and b/PKHeX.Core/Resources/legality/wild/encounter_go_home.pkl differ diff --git a/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl b/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl index e3168b0c18a..e9c7e284e33 100644 Binary files a/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl and b/PKHeX.Core/Resources/legality/wild/encounter_go_lgpe.pkl differ diff --git a/PKHeX.WinForms/Resources/text/changelog.txt b/PKHeX.WinForms/Resources/text/changelog.txt index daa954dde4e..a0dbc77559f 100644 --- a/PKHeX.WinForms/Resources/text/changelog.txt +++ b/PKHeX.WinForms/Resources/text/changelog.txt @@ -1,7 +1,33 @@ PKHeX - By Kaphotics http://projectpokemon.org/pkhex/ -24/07/27 - New Update: +24/11/11 - New Update: + - Legality: + - - Added: Gen3/4 Nidoran eggs now recognize their PID correlation. Thanks @abcboy101 ! + - - Added: Gen7 LGPE crossover locations added. Thanks @Lusamine ! + - - Changed: Gen3 event recognition enhanced to verify OT genders and complete PID/IV correlations. Thanks @kamronbatman ! + - - Fixed: Gen3 encounter slots now generate & recognize their encounter conditions more accurately. Thanks @ymaniz09 & TFS! + - Added: Encounter Database: New setting to enable displaying detailed information about each template on hover. + - Added: Encounter Database, mgdb: New tab to allow toggling settings used when generating templates. + - Added: PKM Database: New tab to allow toggling settings used when searching. Requires reopening the form. + - Added: Gen9 SV personal data now exposes the computed BaseEXP property instead of 0. + - Added: Gen6/7/SWSH trainer editor can now change the save file's trainer gender, by updating model data. Thanks @abcboy101 ! + - Added: Gen5 DLC editor added. In addition to the C-Gear skin editor, can load/export Musicals, Pokedex skins, Battle Videos, etc! + - Added: Gen5 DLC supports reading/writing the never-distributed Battle Test data. + - Added: Gen5 misc editor can now change more Battle Subway properties. Thanks @Mowstyl ! + - Added: Gen3 misc editor can now change Lilycove Museum paintings (RNG abuse). Thanks @pasqualenardiello ! + - Added: Gen2 misc editor for Crystal added button to enable the GS Ball event. + - Added: Gen2 mail formats now read/write for all languages. Thanks @abcboy101 ! + - Fixed: Complete Dex cheat (BDSP, SV, etc) now retains already set shiny flag records for entries. Thanks @TankedThomas ! + - Fixed: Partner Ribbon now shows up in the Affixed Ribbon list. + - Fixed: Met tab now loads Version/Location correctly when starting up with a RBY save and loading a future game save. + - Fixed: Gen8 BDSP Manaphy egg now generates correctly. + - Fixed: Gen4 HGSS box modification corruption on single in-game save issue fixed. Thanks @Lusamine, @gingrentse, @WonderSquid ! + - Fixed: Gen3 GameCube OT names that are 7 characters long now convert to PK3 correctly. + - Changed: Gen5 C-Gear Skins loaded from image files no longer completely fail when too many tiles, instead showing partial results. + - Changed: Errors generated by plugins are now more clearly indicated that they are caused by the plugin, for error reporting. + +24/07/27 - New Update: (353225) [9310677] - Legality: - - Added: Most Gen3 events from Japan are now recognized. - Fixed: Gen6 box name editing now edits the right offset. Thanks @javierhimura ! diff --git a/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs b/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs index e9eac91f750..c383f795ae2 100644 --- a/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs +++ b/PKHeX.WinForms/Subforms/SAV_MysteryGiftDB.cs @@ -93,6 +93,10 @@ public SAV_MysteryGiftDB(PKMEditor tabs, SAVEditor sav) L_Viewed.Text = string.Empty; // invis for now L_Viewed.MouseEnter += (_, _) => hover.SetToolTip(L_Viewed, L_Viewed.Text); + var settings = new TabPage { Text = "Settings" }; + settings.Controls.Add(new PropertyGrid { Dock = DockStyle.Fill, SelectedObject = Main.Settings.EncounterDb }); + TC_SearchSettings.Controls.Add(settings); + // Load Data B_Search.Enabled = false; L_Count.Text = "Loading...";