Update 170424

Updates wc7 event dbs
Fixes string raw copy for text editor
This commit is contained in:
Kurt 2017-04-23 21:44:12 -07:00
parent dc911351fe
commit 7a508590a3
5 changed files with 25 additions and 4 deletions

View file

@ -138,8 +138,8 @@ namespace PKHeX.WinForms
editing = true;
// build bytes
byte[] data = PKX.setString(TB_Text.Text, Main.SAV.Generation, Main.SAV.Japanese, bigendian, Raw.Length, Main.SAV.Language);
Array.Copy(data, Raw, data.Length);
for (int i = 0; i < data.Length; i++)
Array.Copy(data, Raw, Math.Min(data.Length, Raw.Length));
for (int i = 0; i < Raw.Length; i++)
Bytes[i].Value = Raw[i];
editing = false;
}

Binary file not shown.

Binary file not shown.

View file

@ -1,7 +1,28 @@
PKHeX - By Kaphotics
http://projectpokemon.org/pkhex
17/03/18 - New Update:
17/04/24 - New Update:
- Legality: Added Gen3, Gen4, Gen5 legality checking! Thanks javierhimura & wwwwwwzx!
- - Added: Legality Translations, currently supports English, Chinese, and Korean. Thanks wwwwwwzx & lilymaniac!
- - Note: Colosseum/XD is not supported at this time, and certain Gen3 events may not be detected.
- - Fixed: More edge cases
- Changed: Trash Byte & Special character editing window (added) now replaces the Text Entry window.
- Changed: Mystery Gift DB now has Gen 4 & 5 event files to select from.
- Changed: Mystery Gift DB and PKM DB browsing speed has been improved slightly.
- Changed: Hovering over a pkm storage slot now gives more visual feedback.
- - Useful for viewing/editing trash bytes of any generation string, like A-Save.
- Added: Can now load GameCube memory card files directly. Thanks javierhimura!
- Added: More Gen3 misc editing features, such as Ferry Pass (event gift) adding. Thanks pokecal!
- Added: Gen4 misc editing features, such as Poketch editing and Battle Frontier. Thanks pokecal!
- Added: Gen4 Honey Tree editing. Thanks suloku!
- Added: Gen6 Friend Safari slot unlocking macro. Thanks suloku!
- Added: Batch Editor can now edit party slots.
- Fixed: Past gen transfer accuracy improved. Thanks Sabresite!
- Fixed: Gen5 Mystery Gift PID generation. Thanks Sabresite & Kirzi!
- Fixed: Rerolling Wurmple family PID/EC now generates valid values.
- Fixed: Gen2 no longer cause data validation errors on load.
17/03/18 - New Update: (73519) [501142]
- Legality:
- - Added: Heavy Ball legality check. Thanks SciresM!
- - Added: Loading Gen1 save file now asks if it is a Virtual Console save for separation of GenII legality.

View file

@ -1 +1 @@
20170318
20170424