Skip to content

Commit d74860a

Browse files
committed
Increment version
1 parent 2a859d9 commit d74860a

File tree

4 files changed

+32
-23
lines changed

4 files changed

+32
-23
lines changed

AtlusScriptCompilerGUI/Forms/MainForm.Designer.cs

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AtlusScriptCompilerGUI/Forms/MainForm.cs

+4
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,23 @@
22
using System;
33
using System.Drawing;
44
using System.IO;
5+
using System.Reflection;
56
using System.Windows.Forms;
67

78
namespace AtlusScriptCompilerGUIFrontend
89
{
910
public partial class MainForm : Form
1011
{
12+
public static Version version = new Version(2, 3);
13+
1114
public MainForm()
1215
{
1316
InitializeComponent();
1417
Icon = Icon.ExtractAssociatedIcon(System.Reflection.Assembly.GetExecutingAssembly().Location);
1518
comboGame.DataSource = GUI.GamesDropdown;
1619
if (File.Exists("Game.txt"))
1720
try { comboGame.SelectedIndex = GUI.GamesDropdown.IndexOf(File.ReadAllLines("Game.txt")[0]); } catch { }
21+
this.Text += $" v{version.Major}.{version.Minor}";
1822
}
1923

2024
private void MainForm_Load(object sender, EventArgs e)

AtlusScriptCompilerGUI_Dark/Forms/DarkForm.Designer.cs

+14-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AtlusScriptCompilerGUI_Dark/Forms/DarkForm.cs

+4
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,23 @@
33
using System;
44
using System.Drawing;
55
using System.IO;
6+
using System.Reflection;
67
using System.Windows.Forms;
78

89
namespace AtlusScriptCompilerGUIFrontend
910
{
1011
public partial class MainForm : DarkForm
1112
{
13+
public static Version version = new Version(2, 3);
14+
1215
public MainForm()
1316
{
1417
InitializeComponent();
1518
Icon = Icon.ExtractAssociatedIcon(System.Reflection.Assembly.GetExecutingAssembly().Location);
1619
comboGame.DataSource = GUI.GamesDropdown;
1720
if (File.Exists("Game.txt"))
1821
try { comboGame.SelectedIndex = GUI.GamesDropdown.IndexOf(File.ReadAllLines("Game.txt")[0]); } catch { }
22+
this.Text += $" v{version.Major}.{version.Minor}";
1923
}
2024

2125
private void MainForm_Load(object sender, EventArgs e)

0 commit comments

Comments
 (0)