Skip to content

Commit

Permalink
Added new version number
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesGameDev committed Apr 10, 2024
1 parent 004fc08 commit 02a6c59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Fushigi/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@

internal class Program
{
public const string Version = "v1.1.4";

private static void Main(string[] args)
{
Logger.CreateLogger();

AppDomain.CurrentDomain.UnhandledException += Logger.HandleUnhandledException;

Logger.LogMessage("Program", "Starting Fushigi v0.6...");
Logger.LogMessage("Program", $"Starting Fushigi {Version}...");

if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
Logger.LogMessage("Program", "Running on osx");
Expand Down
1 change: 1 addition & 0 deletions Fushigi/windowing/WindowManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ private record struct WindowResources(ImGuiController ImguiController, IInputCon
public static void CreateWindow(out IWindow window, Vector2D<int>? initialWindowSize = null, Action? onConfigureIO = null)
{
var options = WindowOptions.Default;
options.Title = $"Fushigi {Program.Version}";
options.API = new GraphicsAPI(
ContextAPI.OpenGL,
ContextProfile.Core,
Expand Down

0 comments on commit 02a6c59

Please sign in to comment.