We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a7e9e commit 6996213Copy full SHA for 6996213
Forms/MainForm.cs
@@ -12,7 +12,7 @@ namespace AtlusScriptGUI
12
{
13
public partial class MainForm : MetroSetForm
14
15
- public static Version version = new Version(3, 4);
+ public static Version version = new Version(3, 4, 1);
16
public Config settings = new Config();
17
18
public MainForm(string[] args)
@@ -28,7 +28,7 @@ public MainForm(string[] args)
28
SetDropDowns();
29
SetLogging();
30
31
- this.Text += $" v{version.Major}.{version.Minor}";
+ this.Text += $" v{version.Major}.{version.Minor}.{version.Build}";
32
}
33
34
0 commit comments