aboutsummaryrefslogtreecommitdiff
path: root/Erable/Program.cs
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2021-02-10 22:49:13 -0500
committerAndrew Lee <alee14498@protonmail.com>2021-02-10 22:49:13 -0500
commit332576ad136c1c5701c72996cbb9bbf8d397f37f (patch)
treeb2f9884c2134e263d9cd4c4cdbd7447f2eb438b4 /Erable/Program.cs
parent834d2891edaf996da59908142d16120ac7c1f32a (diff)
downloaderable-godot-332576ad136c1c5701c72996cbb9bbf8d397f37f.tar.gz
erable-godot-332576ad136c1c5701c72996cbb9bbf8d397f37f.tar.bz2
erable-godot-332576ad136c1c5701c72996cbb9bbf8d397f37f.zip
Added version number
Diffstat (limited to 'Erable/Program.cs')
-rw-r--r--Erable/Program.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/Erable/Program.cs b/Erable/Program.cs
index f4a68e3..827f1bf 100644
--- a/Erable/Program.cs
+++ b/Erable/Program.cs
@@ -30,7 +30,8 @@ namespace Erable
// yet and stuff might break.
public static void Main(string[] args)
{
- Console.WriteLine("Erable: Audio Player by Alee Productions");
+ Console.WriteLine("Erable {0}: Audio Player by Alee Productions", Sirop.Backend.Version.ErableVersion);
+ Console.WriteLine("Powered by Sirop Backend {0} ", Sirop.Backend.Version.SiropVersion);
AppDomain.CurrentDomain.UnhandledException += ErrorHandler;
@@ -46,6 +47,8 @@ namespace Erable
static void ErrorHandler(object sender, UnhandledExceptionEventArgs e)
{
Console.WriteLine("Oh no! An error has occurred!");
+ Console.WriteLine("Erable Version: " + Sirop.Backend.Version.ErableVersion);
+ Console.WriteLine("Sirop Version: " + Sirop.Backend.Version.SiropVersion);
Console.WriteLine("OS Version: " + Environment.OSVersion);
Console.WriteLine(".NET Version: " + Environment.Version);
Console.WriteLine("Report this to the developers...");