Update changelog

Forgot to store the total download count before publishing the latest
release.
This commit is contained in:
Kurt 2016-01-11 21:19:01 -08:00
parent c0e67d0879
commit 6e29ad20d6
3 changed files with 18 additions and 1 deletions

View file

@ -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
//

View file

@ -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)
{

View file

@ -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->