Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.

Commit 2b8768b

Browse files
committed
Fixed issue #13 , other minor changes
Fixed issue #13 with an ellipsis and a tooltip Added the PRERELEASE constant for identifying pre-release versions Minor UI enhancements
1 parent 4b010c1 commit 2b8768b

File tree

9 files changed

+46
-18
lines changed

9 files changed

+46
-18
lines changed

86BoxManager/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace _86boxManager
66
{
77
static class Program
88
{
9+
public const bool PRERELEASE = false; //Is this a pre-release version?
910
/// <summary>
1011
/// The main entry point for the application.
1112
/// </summary>

86BoxManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.2.0")]
36-
[assembly: AssemblyFileVersion("1.0.2.0")]
35+
[assembly: AssemblyVersion("1.0.3.0")]
36+
[assembly: AssemblyFileVersion("1.0.3.0")]

86BoxManager/dlgAbout.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Reflection;
32
using System.Windows.Forms;
43

54
namespace _86boxManager
@@ -32,6 +31,10 @@ private void lnkGuthub2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs
3231
private void dlgAbout_Load(object sender, EventArgs e)
3332
{
3433
lblVersion1.Text = Application.ProductVersion.ToString().TrimEnd('.', '0');
34+
if (Program.PRERELEASE)
35+
{
36+
lblVersion1.Text += " Pre-release";
37+
}
3538
}
3639
}
3740
}

86BoxManager/dlgAddVM.Designer.cs

Lines changed: 15 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

86BoxManager/dlgAddVM.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ private void txtName_TextChanged(object sender, EventArgs e)
4141
{
4242
btnAdd.Enabled = true;
4343
lblPath1.Text = main.cfgpath + txtName.Text;
44+
tipLblPath1.SetToolTip(lblPath1, main.cfgpath + txtName.Text);
4445
}
4546
}
4647
}

86BoxManager/dlgAddVM.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,7 @@
117117
<resheader name="writer">
118118
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120+
<metadata name="tipLblPath1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
121+
<value>17, 17</value>
122+
</metadata>
120123
</root>

86BoxManager/dlgEditVM.Designer.cs

Lines changed: 16 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

86BoxManager/dlgEditVM.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ private void txtName_TextChanged(object sender, EventArgs e)
6565
{
6666
btnApply.Enabled = true;
6767
lblPath1.Text = main.cfgpath + txtName.Text;
68+
tipLblPath1.SetToolTip(lblPath1, main.cfgpath + txtName.Text);
6869
}
6970
}
7071
}

86BoxManager/dlgEditVM.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,7 @@
117117
<resheader name="writer">
118118
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119119
</resheader>
120+
<metadata name="tipLblPath1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
121+
<value>17, 17</value>
122+
</metadata>
120123
</root>

0 commit comments

Comments
 (0)