From cd7cf08bdadc4042040354a0ce5656d0776f8a95 Mon Sep 17 00:00:00 2001 From: ole kristian homelien Date: Fri, 20 Dec 2024 12:48:24 +0100 Subject: [PATCH] Update version info --- AssetEditor/App.xaml.cs | 3 -- .../Commands/Face/FaceSelectionCommand.cs | 3 +- Notes.txt | 40 ++++++++----------- Shared/SharedCore/Services/VersionChecker.cs | 2 +- 4 files changed, 18 insertions(+), 30 deletions(-) diff --git a/AssetEditor/App.xaml.cs b/AssetEditor/App.xaml.cs index a0f12fd2c..8aa9f1c10 100644 --- a/AssetEditor/App.xaml.cs +++ b/AssetEditor/App.xaml.cs @@ -38,9 +38,6 @@ protected override void OnStartup(StartupEventArgs e) settingsService.AllowSettingsUpdate = true; settingsService.Load(); - // Init 3d world - //var gameWorld = _serviceProvider.GetRequiredService(); - //gameWorld.ForceEnsureCreated(); // Show the settings window if its the first time the tool is ran if (settingsService.CurrentSettings.IsFirstTimeStartingApplication) diff --git a/GameWorld/View3D/Commands/Face/FaceSelectionCommand.cs b/GameWorld/View3D/Commands/Face/FaceSelectionCommand.cs index d8c656084..eabf6a920 100644 --- a/GameWorld/View3D/Commands/Face/FaceSelectionCommand.cs +++ b/GameWorld/View3D/Commands/Face/FaceSelectionCommand.cs @@ -1,8 +1,7 @@ -using GameWorld.Core.Commands; +using System.Collections.Generic; using GameWorld.Core.Components.Selection; using Serilog; using Shared.Core.ErrorHandling; -using System.Collections.Generic; namespace GameWorld.Core.Commands.Face { diff --git a/Notes.txt b/Notes.txt index da17dfb7f..608d2b04e 100644 --- a/Notes.txt +++ b/Notes.txt @@ -1,5 +1,5 @@ Fixes for v056 - General: Double clicking nodes does not expand them + General: Move resent files out of settings General: Save Active pack button https://github.com/donkeyProgramming/TheAssetEditor/issues/123 General: Wem files, load them but hide in tree view. To avoid files go missing on save later. @@ -10,7 +10,6 @@ Fixes for v056 GameWorld:Move bloomeffect to resourcelib GameWorld: ONly render glow if there is glow stuff in the pass GameWorld: Complex scene loader, make it work without needed Animation players, and graphics card. For unit testing - GameWorld: Resizing window to small causes crash KitbashTool: Manual vertex editor for weights KitbashTool: Reduce icon size? @@ -18,26 +17,6 @@ Fixes for v056 KitbashTool: Issues with rendering/selection and pivot point KitbashTool: When there is no files left in a reference mesh - close the node - //// - internal sealed class ServiceProviderEngineScope : IServiceScope, IServiceProvider, IKeyedServiceProvider, IAsyncDisposable, IServiceScopeFactory - + _scopes[owner] ServiceDescriptors = 364, IsScope = true, Disposed = true Microsoft.Extensions.DependencyInjection.IServiceScope {Microsoft.Extensions.DependencyInjection.ServiceLookup.ServiceProviderEngineScope} - - ... - Createpackfile with no name - crash - - done | Fix dobile clicki - done | Editable node context missing / unit test - done | Logging for SendNodeSelectionEvent - - dont make an extra game wordl! / Move static init to other class - Force delete game and events. Global events as well? - - - Log all scopes / give them id and keep ref for ever - Increase log to 150 lines - For logger, get all scopes - For logger, include scope ID in statement - Bugs: KitbashTool: Node clicking in tree view is slow KitbashTool: Tint capability crash bug => Shield change to tint @@ -90,6 +69,11 @@ Improvements: General: Support napoleon format KitbashTool: More materials KitbashTool: Orthographic projection + General: Improve logging to contain scope info + Log all scopes / give them id and keep ref for ever + Increase log to 150 lines + For logger, get all scopes + For logger, include scope ID in statement New features: KitbashTool: Add editor for attachmentpoints for meshes. @@ -101,8 +85,16 @@ New features: Tool for editing prefabs - - +Fixes for v056: + [Bug] General: Double clicking a packfile node did not expand it correctly + [Bug] General: "Make editable pack" option missing from context menu + [Bug] General: Fix crash when resize window to very small + [Bug] General: Fix issue related to making packfiles with no name + [Bug] General: Fix issue with missing font on close + [Bug] General: Fix issue related to selection change event on application close + [Bug] KitbashEditor: Fixed event issue related to selection in SceneNodeExplorer + + Fixes for v055: [Feature]General: Pin tool is improved and now has the SkinWrap rigging enabled again. diff --git a/Shared/SharedCore/Services/VersionChecker.cs b/Shared/SharedCore/Services/VersionChecker.cs index e4dcc9f06..4d2a58a02 100644 --- a/Shared/SharedCore/Services/VersionChecker.cs +++ b/Shared/SharedCore/Services/VersionChecker.cs @@ -8,7 +8,7 @@ namespace Shared.Core.Services public class VersionChecker { private static readonly string GitHubLink = @"https://github.com/donkeyProgramming/TheAssetEditor/releases/latest"; - public static string CurrentVersion { get => "0.55"; } + public static string CurrentVersion { get => "0.56"; } public static void CheckVersion() {