浏览代码

Version++ and implemented missing interfaces

Krzysztof Krysiński 2 年之前
父节点
当前提交
3e5c5e1fae

+ 5 - 0
src/PixiEditor.Platform.MSStore/MicrosoftStorePlatform.cs

@@ -10,5 +10,10 @@ public sealed class MicrosoftStorePlatform : IPlatform
         return true;
         return true;
     }
     }
 
 
+    public void Update()
+    {
+
+    }
+
     public IAdditionalContentProvider? AdditionalContentProvider { get; } = new MSAdditionalContentProvider();
     public IAdditionalContentProvider? AdditionalContentProvider { get; } = new MSAdditionalContentProvider();
 }
 }

+ 5 - 0
src/PixiEditor.Platform.Standalone/StandalonePlatform.cs

@@ -10,5 +10,10 @@ public sealed class StandalonePlatform : IPlatform
         return true;
         return true;
     }
     }
 
 
+    public void Update()
+    {
+
+    }
+
     public IAdditionalContentProvider? AdditionalContentProvider { get; } = new StandaloneAdditionalContentProvider();
     public IAdditionalContentProvider? AdditionalContentProvider { get; } = new StandaloneAdditionalContentProvider();
 }
 }

+ 2 - 2
src/PixiEditor/Properties/AssemblyInfo.cs

@@ -50,5 +50,5 @@ using System.Windows;
 // You can specify all the values or you can default the Build and Revision Numbers
 // You can specify all the values or you can default the Build and Revision Numbers
 // by using the '*' as shown below:
 // by using the '*' as shown below:
 // [assembly: AssemblyVersion("1.0.*")]
 // [assembly: AssemblyVersion("1.0.*")]
-[assembly: AssemblyVersion("1.2.1.0")]
-[assembly: AssemblyFileVersion("1.2.1.0")]
+[assembly: AssemblyVersion("1.2.1.1")]
+[assembly: AssemblyFileVersion("1.2.1.1")]