Skip to content

Commit

Permalink
Increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrineFox committed Feb 2, 2023
1 parent 2a859d9 commit d74860a
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 23 deletions.
20 changes: 10 additions & 10 deletions AtlusScriptCompilerGUI/Forms/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions AtlusScriptCompilerGUI/Forms/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,23 @@
using System;
using System.Drawing;
using System.IO;
using System.Reflection;
using System.Windows.Forms;

namespace AtlusScriptCompilerGUIFrontend
{
public partial class MainForm : Form
{
public static Version version = new Version(2, 3);

public MainForm()
{
InitializeComponent();
Icon = Icon.ExtractAssociatedIcon(System.Reflection.Assembly.GetExecutingAssembly().Location);
comboGame.DataSource = GUI.GamesDropdown;
if (File.Exists("Game.txt"))
try { comboGame.SelectedIndex = GUI.GamesDropdown.IndexOf(File.ReadAllLines("Game.txt")[0]); } catch { }
this.Text += $" v{version.Major}.{version.Minor}";
}

private void MainForm_Load(object sender, EventArgs e)
Expand Down
27 changes: 14 additions & 13 deletions AtlusScriptCompilerGUI_Dark/Forms/DarkForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions AtlusScriptCompilerGUI_Dark/Forms/DarkForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,23 @@
using System;
using System.Drawing;
using System.IO;
using System.Reflection;
using System.Windows.Forms;

namespace AtlusScriptCompilerGUIFrontend
{
public partial class MainForm : DarkForm
{
public static Version version = new Version(2, 3);

public MainForm()
{
InitializeComponent();
Icon = Icon.ExtractAssociatedIcon(System.Reflection.Assembly.GetExecutingAssembly().Location);
comboGame.DataSource = GUI.GamesDropdown;
if (File.Exists("Game.txt"))
try { comboGame.SelectedIndex = GUI.GamesDropdown.IndexOf(File.ReadAllLines("Game.txt")[0]); } catch { }
this.Text += $" v{version.Major}.{version.Minor}";
}

private void MainForm_Load(object sender, EventArgs e)
Expand Down

0 comments on commit d74860a

Please sign in to comment.