mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-05 21:17:14 -05:00
Update 20.03.14
This commit is contained in:
parent
3aaf318035
commit
696bdf7cae
|
|
@ -12,7 +12,7 @@
|
||||||
<ApplicationIcon>icon.ico</ApplicationIcon>
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
||||||
<StartupObject>PKHeX.WinForms.Program</StartupObject>
|
<StartupObject>PKHeX.WinForms.Program</StartupObject>
|
||||||
<AssemblyName>PKHeX</AssemblyName>
|
<AssemblyName>PKHeX</AssemblyName>
|
||||||
<Version>20.02.14</Version>
|
<Version>20.03.14</Version>
|
||||||
<LangVersion>8</LangVersion>
|
<LangVersion>8</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,33 @@
|
||||||
PKHeX - By Kaphotics
|
PKHeX - By Kaphotics
|
||||||
http://projectpokemon.org/pkhex/
|
http://projectpokemon.org/pkhex/
|
||||||
|
|
||||||
20/02/14 - New Update:
|
20/03/14 - New Update:
|
||||||
|
- Added: Shiny Sprites for the new 68x56 box sprites. Thanks @msikma! https://github.com/msikma/pokesprite
|
||||||
|
- Legality:
|
||||||
|
- - Added: Latest raid news data.
|
||||||
|
- - Fixed: Shared egg moves are now allowed for past-gen transfers.
|
||||||
|
- - Fixed: Gen8 unavailable evolutions (like Alolan Raichu) are now recognized correctly. Thanks @sora10pls!
|
||||||
|
- - Fixed: Gen8 Pumpkaboo/Gourgeist Hidden Abilities are now restricted correctly in Gen8. Thanks @Lusamine!
|
||||||
|
- - Fixed: Gen8 Alola starters are now correctly banned from inheriting balls (only Poké Ball). Thanks @Lusamine!
|
||||||
|
- - Fixed: Gen8 Past gen species are now correctly allowed to inherit balls using Gen7 and prior rules. Thanks @Lusamine!
|
||||||
|
- - Fixed: Gen3 Antishiny trainer Pokémon mechanism for XD is now checked correctly. Thanks @ijuintekka!
|
||||||
|
- - Fixed: Gen4 HGSS egg hatch locations now allow the Battle Fontier. Thanks @sora10pls!
|
||||||
|
- - Added: Gen3/4 Min levels for in-game trades are now enforced.
|
||||||
|
- - Fixed: Gen3/4/5 ShinyXor8-15 Antishiny mechanism is now checked correctly. Thanks @Lusamine!
|
||||||
|
- Added: Current Box is now used when loading SW/SH save files.
|
||||||
|
- Added: Box manipulations (right click the Box tab) now has a Heal All manipulation (like the Pokécenter heal).
|
||||||
|
- Added: Gen8 Indicator for dummied moves. Thanks @sora10pls!
|
||||||
|
- Added: Gen8 now exposes NPC and Friend League card accessors in the block editor.
|
||||||
|
- Added: Gen3 More event flags. Thanks @Kermalis, @FeralFalcon!
|
||||||
|
- Fixed: Gen8 Showdown set parsing for Toxtricity now behaves correctly with Showdown's latest set syntax updates.
|
||||||
|
- Fixed: Gen6+ Loading a version-less PKM will no longer copy PID->EC. Only for Gen3/4/5 origins.
|
||||||
|
- Fixed: Gen8 converted PK2/PK7 files are now healed.
|
||||||
|
- Fixed: Gen8 affection fields are now hidden (properties don't exist in PK8 format).
|
||||||
|
- Fixed: Gen3 PC Item list no longer lists key items twice. Thanks @Kermalis!
|
||||||
|
- Changed: Gen8 now only sets the display form if it is not already owned; retaining the original displayed form. Thanks @CanoeHope!
|
||||||
|
- Updated: Spanish/Chinese translations. Thanks @qhq, @easyworld, @XxPhoenix1996xX !
|
||||||
|
|
||||||
|
20/02/14 - New Update: (106566) [2517780]
|
||||||
- Legality:
|
- Legality:
|
||||||
- - Added: Initial handling for HOME Transfers.
|
- - Added: Initial handling for HOME Transfers.
|
||||||
- - Note: Tracker value is currently not flagged if missing; there's a setting to enable flagging.
|
- - Note: Tracker value is currently not flagged if missing; there's a setting to enable flagging.
|
||||||
|
|
|
||||||
|
|
@ -318,6 +318,7 @@ private void LoadDatabase()
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
while (!IsHandleCreated) { }
|
||||||
BeginInvoke(new MethodInvoker(() => SetResults(RawDB)));
|
BeginInvoke(new MethodInvoker(() => SetResults(RawDB)));
|
||||||
}
|
}
|
||||||
catch { /* Window Closed? */ }
|
catch { /* Window Closed? */ }
|
||||||
|
|
|
||||||
|
|
@ -200,11 +200,17 @@ private void LoadDatabase()
|
||||||
RawDB = new List<MysteryGift>(db);
|
RawDB = new List<MysteryGift>(db);
|
||||||
foreach (var mg in RawDB)
|
foreach (var mg in RawDB)
|
||||||
mg.GiftUsed = false;
|
mg.GiftUsed = false;
|
||||||
BeginInvoke(new MethodInvoker(delegate
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
SetResults(RawDB);
|
while (!IsHandleCreated) { }
|
||||||
PopulateComboBoxes();
|
BeginInvoke(new MethodInvoker(delegate
|
||||||
}));
|
{
|
||||||
|
SetResults(RawDB);
|
||||||
|
PopulateComboBoxes();
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
catch { /* Window Closed? */ }
|
||||||
}
|
}
|
||||||
|
|
||||||
// IO Usage
|
// IO Usage
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user