mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
Update changelog
Forgot to store the total download count before publishing the latest release.
This commit is contained in:
parent
c0e67d0879
commit
6e29ad20d6
3 changed files with 18 additions and 1 deletions
1
PKX/f1-Main.Designer.cs
generated
1
PKX/f1-Main.Designer.cs
generated
|
@ -537,6 +537,7 @@
|
|||
this.MT_Form.TabIndex = 18;
|
||||
this.MT_Form.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
||||
this.MT_Form.Visible = false;
|
||||
this.MT_Form.TextChanged += new System.EventHandler(this.updateHaXForm);
|
||||
//
|
||||
// CB_Ability
|
||||
//
|
||||
|
|
|
@ -1717,6 +1717,21 @@ namespace PKHeX
|
|||
// Gender Forms
|
||||
if (PKX.getGender(CB_Form.Text) < 2 && Util.getIndex(CB_Species) != 201) // don't do this for Unown
|
||||
Label_Gender.Text = CB_Form.Text;
|
||||
|
||||
if (changingFields)
|
||||
return;
|
||||
changingFields = true;
|
||||
MT_Form.Text = Util.getIndex(CB_Form).ToString();
|
||||
changingFields = false;
|
||||
}
|
||||
private void updateHaXForm(object sender, EventArgs e)
|
||||
{
|
||||
if (changingFields)
|
||||
return;
|
||||
changingFields = true;
|
||||
int form = Util.ToInt32(MT_Form.Text);
|
||||
CB_Form.SelectedIndex = CB_Form.Items.Count > form ? form : -1;
|
||||
changingFields = false;
|
||||
}
|
||||
private void updatePP(object sender, EventArgs e)
|
||||
{
|
||||
|
|
|
@ -607,7 +607,7 @@ http://projectpokemon.org/forums/showthread.php?36986
|
|||
- Fixed: Pokédex setting of language flags will write to the correct area. Thanks DeadSkullzJr!
|
||||
- Fixed: Trainer Editor error (pt 2). Thanks eonrocket!
|
||||
|
||||
12/30/15 - New Update:
|
||||
12/30/15 - New Update: (16700)
|
||||
- Added: Secure Value VIEWING in the SAV Tab (informational purposes).
|
||||
- Added: Setting a Pokemon with DexNav count = 0 will increment by 1. Thanks Eskuero!
|
||||
- Changed: Encrypting pk6 files is now marginally faster.
|
||||
|
@ -624,6 +624,7 @@ http://projectpokemon.org/forums/showthread.php?36986
|
|||
|
||||
- Fixed: Executable name less than two characters will no longer prevent startup of the program.
|
||||
- Fixed: Glitchy QR code importing returning no data is now handled correctly.
|
||||
|
||||
- Changed: Multiple 'macros' are now accessible via the Main Menu ribbon.
|
||||
- - SAV Exporting button moved to File->; old modifierkeys are now separate clickable options.
|
||||
- - Database and Folder opening moved to Tools->
|
||||
|
|
Loading…
Reference in a new issue