Compare commits
	
		
			1 Commits
		
	
	
		
			v1.0.1.4
			...
			0739299694
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 0739299694 | 
@@ -1,7 +1,7 @@
 | 
			
		||||
name: Deploy
 | 
			
		||||
on:
 | 
			
		||||
  push:
 | 
			
		||||
    tags: ["v[0-9]+.[0-9]+.[0-9]+"]
 | 
			
		||||
    tags: ["v([0-9]+.)?[0-9]+.[0-9]+.[0-9]+"]
 | 
			
		||||
jobs:
 | 
			
		||||
  deploy:
 | 
			
		||||
    name: Build and Deploy
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										18
									
								
								CHANGELOG.md
									
									
									
									
									
								
							
							
						
						
									
										18
									
								
								CHANGELOG.md
									
									
									
									
									
								
							@@ -2,6 +2,24 @@
 | 
			
		||||
Changelog
 | 
			
		||||
=========
 | 
			
		||||
 | 
			
		||||
[v1.0.0.0][v1.0.0.0] (2025-XX-YY) {#v1.0.0.0}
 | 
			
		||||
---------------------------------------------
 | 
			
		||||
 | 
			
		||||
### Neue Funktionen {#v1.0.0.0-features}
 | 
			
		||||
 | 
			
		||||
* Something.
 | 
			
		||||
 | 
			
		||||
### Behobene Fehler {#v1.0.0.0-bugfixes}
 | 
			
		||||
 | 
			
		||||
* Something.
 | 
			
		||||
 | 
			
		||||
### Sonstiges {#v1.0.0.0-misc}
 | 
			
		||||
 | 
			
		||||
* Something.
 | 
			
		||||
 | 
			
		||||
[v1.0.0.0]: https://git.necronda.net/winzer/elwig/releases/tag/v1.0.0.0
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
[v0.13.9][v0.13.9] (2025-05-05) {#v0.13.9}
 | 
			
		||||
------------------------------------------
 | 
			
		||||
 
 | 
			
		||||
@@ -85,7 +85,7 @@ namespace Elwig {
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        protected override async void OnStartup(StartupEventArgs evt) {
 | 
			
		||||
            Version = new Version(typeof(App).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion.Split('+')[0] ?? "0.0.0");
 | 
			
		||||
            Version = new Version(typeof(App).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion.Split('+')[0] ?? "0.0.0.0");
 | 
			
		||||
 | 
			
		||||
            try {
 | 
			
		||||
                await AppDbUpdater.CheckDb();
 | 
			
		||||
 
 | 
			
		||||
@@ -7,7 +7,7 @@
 | 
			
		||||
    <UseWPF>true</UseWPF>
 | 
			
		||||
    <PreserveCompilationContext>true</PreserveCompilationContext>
 | 
			
		||||
    <ApplicationIcon>Resources\Images\Elwig.ico</ApplicationIcon>
 | 
			
		||||
    <Version>0.13.9</Version>
 | 
			
		||||
    <Version>1.0.0.0</Version>
 | 
			
		||||
    <SatelliteResourceLanguages>de-AT</SatelliteResourceLanguages>
 | 
			
		||||
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 | 
			
		||||
    <ApplicationManifest>app.manifest</ApplicationManifest>
 | 
			
		||||
 
 | 
			
		||||
@@ -28,10 +28,10 @@ namespace Elwig.Helpers {
 | 
			
		||||
            await UpdateDbSchema(cnx, (int)(schemaVers / 100), RequiredSchemaVersion);
 | 
			
		||||
 | 
			
		||||
            var userVers = (long?)await AppDbContext.ExecuteScalar(cnx, "PRAGMA user_version") ?? 0;
 | 
			
		||||
            var v = new Version((int)(userVers >> 24), (int)((userVers >> 16) & 0xFF), (int)(userVers & 0xFFFF));
 | 
			
		||||
            var v = new Version((int)(userVers >> 24), (int)((userVers >> 16) & 0xFF), (int)((userVers >> 8) & 0xFF), (int)(userVers & 0xFF));
 | 
			
		||||
 | 
			
		||||
            if (App.Version > v) {
 | 
			
		||||
                long vers = (App.Version.Major << 24) | (App.Version.Minor << 16) | App.Version.Build;
 | 
			
		||||
                long vers = (App.Version.Major << 24) | (App.Version.Minor << 16) | (App.Version.Build << 8) | App.Version.Revision;
 | 
			
		||||
                await AppDbContext.ExecuteBatch(cnx, $"PRAGMA user_version = {vers}");
 | 
			
		||||
            }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -25,7 +25,7 @@ namespace Elwig.Windows {
 | 
			
		||||
        public MainWindow() {
 | 
			
		||||
            InitializeComponent();
 | 
			
		||||
            var v = Assembly.GetExecutingAssembly().GetName().Version;
 | 
			
		||||
            VersionField.Text = "Version: " + (v == null ? "?" : $"{v.Major}.{v.Minor}.{v.Build}") + $" – {App.BranchName}";
 | 
			
		||||
            VersionField.Text = $"Version: {v?.ToString() ?? "?"} – {App.BranchName}";
 | 
			
		||||
            if (App.Client.Client == null) VersionField.Text += " (Unbekannt)";
 | 
			
		||||
            Menu_Help_Update.IsEnabled = App.Config.UpdateUrl != null;
 | 
			
		||||
            Menu_Help_Smtp.IsEnabled = App.Config.Smtp != null;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user