Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
Fixed menu items not reactivating.
  • Loading branch information
IRnifty committed Jan 13, 2015
1 parent 3b8f643 commit 3812873
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Kerbal Config Editor
v1.0 Release
v1.0.1 Release

Kerbal Config Editor (KCE) is an easy to use tool designed to allow modders of Kerbal Space Program to easily and quickly alter or even create KSP Config Files.

This software is provided "as-is" with no warranties.

Expand Down Expand Up @@ -33,5 +35,8 @@ Kerbal Config Editor allows users and modders to easily read, edit, and even cre

CHANGELOG:

v1.0.1:
- Fixed menu items not reactivating.

v1.0:
- INITIAL RELEASE
Binary file modified Kerbal Config Editor/Kerbal Config Editor.exe
Binary file not shown.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Kerbal Config Editor
v1.0 Release
v1.0.1 Release

Kerbal Config Editor (KCE) is an easy to use tool designed to allow modders of Kerbal Space Program to easily and quickly alter or even create KSP Config Files.

This software is provided "as-is" with no warranties.

Expand Down Expand Up @@ -33,5 +35,8 @@ Kerbal Config Editor allows users and modders to easily read, edit, and even cre

CHANGELOG:

v1.0.1:
- Fixed menu items not reactivating.

v1.0:
- INITIAL RELEASE
6 changes: 6 additions & 0 deletions Source/Kerbal Config Editor/ProgramForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,12 @@ private void FinishOpeningFile()
buttonNewNode.Enabled = true;
buttonNewValue.Enabled = true;

// And the New, Open, Save, and Save As options.
newToolStripMenuItem.Enabled = true;
openToolStripMenuItem.Enabled = true;
saveToolStripMenuItem.Enabled = true;
saveAsToolStripMenuItem.Enabled = true;

// Change the form's title to reflect the file's name and location.
this.Text = "Kerbal Config Editor - " + openConfigDialog.FileName.Substring(0, 10) + "..." + openConfigDialog.FileName.Substring(openConfigDialog.FileName.LastIndexOf('\\') + 1);

Expand Down
4 changes: 2 additions & 2 deletions Source/Kerbal Config Editor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
7 changes: 6 additions & 1 deletion Source/Kerbal Config Editor/README.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Kerbal Config Editor
v1.0 Release
v1.0.1 Release

Kerbal Config Editor (KCE) is an easy to use tool designed to allow modders of Kerbal Space Program to easily and quickly alter or even create KSP Config Files.

This software is provided "as-is" with no warranties.

Expand Down Expand Up @@ -33,5 +35,8 @@ Kerbal Config Editor allows users and modders to easily read, edit, and even cre

CHANGELOG:

v1.0.1:
- Fixed menu items not reactivating.

v1.0:
- INITIAL RELEASE

0 comments on commit 3812873

Please sign in to comment.