Added server version handling from project resources

This commit is contained in:
2025-10-02 09:21:14 +02:00
parent 70b818353d
commit de0e87ffd8
5 changed files with 61 additions and 30 deletions

View File

@@ -1,4 +1,5 @@
using System;
using SamaPager_Server.Properties;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
@@ -27,5 +28,10 @@ namespace SamaPager_Server
{
Process.Start("https://git.fiorencis.eu/AndreStork/SamaPager");
}
private void AboutForm_Load(object sender, EventArgs e)
{
versionLbl.Text = $"v.{Resources.currentVersion} ({Resources.versionCodename})";
}
}
}