mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-21 19:43:06 +00:00
Update 24.11.11
This commit is contained in:
parent
f2a6abbb6c
commit
b60c6e5f14
7 changed files with 32 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<Version>24.07.27</Version>
|
||||
<Version>24.11.11</Version>
|
||||
<LangVersion>12</LangVersion>
|
||||
<Nullable>enable</Nullable>
|
||||
<NeutralLanguage>en</NeutralLanguage>
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -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 !
|
||||
|
|
|
@ -93,6 +93,10 @@ public partial class SAV_MysteryGiftDB : Form
|
|||
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...";
|
||||
|
|
Loading…
Reference in a new issue