2
0
Krzysztof Krysiński 3 долоо хоног өмнө
parent
commit
d69cd56251

+ 1 - 1
src/PixiEditor/Models/Rendering/SceneRenderer.cs

@@ -112,7 +112,7 @@ internal class SceneRenderer
 
         /*TODO:
          - [ ] Rendering optimizer
-         - [?] Render thread and proper locking/synchronization - check async-rendering branch (both drawie and pixieditor)
+         - [?] Render thread and proper locking/synchronization - check render-thread branch (both drawie and pixieditor)
                but be aware, this is a nightmare and good luck
          */
 

+ 1 - 1
src/PixiEditor/Models/Serialization/Factories/ChunkyImageSerializationFactory.cs

@@ -36,7 +36,7 @@ public class ChunkyImageSerializationFactory : SerializationFactory<byte[], Chun
     {
         SurfaceSerializationFactory surfaceFactory = new();
         surfaceFactory.Config = Config;
-        if (IsFilePreVersion(serializerData, new Version(2, 0, 1, 16)) || serializerData == default)
+        if (IsFilePreVersion(serializerData, new Version(2, 0, 1, 17)) || serializerData == default)
         {
             if (serialized is byte[] imgBytes)
             {

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

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