diff --git a/Fushigi/Program.cs b/Fushigi/Program.cs index 588f4d6..9fa3139 100644 --- a/Fushigi/Program.cs +++ b/Fushigi/Program.cs @@ -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"); diff --git a/Fushigi/windowing/WindowManager.cs b/Fushigi/windowing/WindowManager.cs index 4ae1746..ae6d483 100644 --- a/Fushigi/windowing/WindowManager.cs +++ b/Fushigi/windowing/WindowManager.cs @@ -26,6 +26,7 @@ private record struct WindowResources(ImGuiController ImguiController, IInputCon public static void CreateWindow(out IWindow window, Vector2D? initialWindowSize = null, Action? onConfigureIO = null) { var options = WindowOptions.Default; + options.Title = $"Fushigi {Program.Version}"; options.API = new GraphicsAPI( ContextAPI.OpenGL, ContextProfile.Core,