Skip to content

Commit 32fc09b

Browse files
Update version
1 parent 5dda5d3 commit 32fc09b

File tree

2 files changed

+23
-14
lines changed

2 files changed

+23
-14
lines changed

Notes.txt

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
3+
4+
25
Lazy load tabs - selection delay is boring!
36

47
ogre_contracts
@@ -14,24 +17,15 @@ ui\campaign ui\hud_campaign.twui.xml
1417

1518

1619

17-
Fixes for v060
18-
[Bugfix]: General: Close console window (and any other windows) on application close
19-
[Bugfix]: General: Improved the error handling when loading game files without manifest file with custom mods in the same folder. (Please dont do this!)
20-
[BugFix]: KitbashTool: Incorrect matrix and attachmentpoint for static meshes, caused props to animate incorrectly in game
21-
[BugFix]: KitbashTool: Fixed and improved decal, dirt and skin material handling for older games
22-
[BugFix]: KitbashTool: Allowed 2 and 3 number of lods
23-
24-
[Feature]: KitbashTool: Second UV channel correctly handled for static meshes
25-
26-
[Internal] Changed animationMetadDataParser to be a singlenton with lazy init - To speed up loa ding and testing when the class is not needed
20+
2721

2822

2923
Must do:
3024
https://discord.com/channels/373745291289034763/795235087352201226/1343171986695782490 => Bugfix
3125
Geometry matrix test
3226
WsModel saving test, not all wisible
33-
Num lods not prefillled for shield!
34-
Allow lod0 to be redusced
27+
28+
Allow lod0 to be redusced - make sure number can be change. On exit event
3529

3630

3731
----
@@ -105,6 +99,7 @@ Important tests:
10599

106100

107101
Improvements:
102+
General: Move complex save/load to its own dll
108103
General: Print scope - special handling for eventhub. Include registred callbacks
109104
General: Show hisotry of commands in exceptions
110105
GameWorld: Move bloomeffect to resourcelib
@@ -167,10 +162,24 @@ New features:
167162

168163
Interesting links:
169164
https://github.com/kikipoulet/SukiUI/blob/main/SukiUI/Controls/PropertyGrid/InstanceViewModel.cs -> Auto generate views for property gird. Also good docking in same lib
165+
166+
Fixes for v061
167+
[Bugfix]: KitbashTool: Fixed incorrect saving of meshes with only skin attribute set
168+
[Feature]: KitbashTool: Custom attachmentpoints are kept and saved.
169+
[Feature]: KitbashTool: Possible to set animation matrix, for things such as building animations.
170170

171+
Fixes for v060
172+
[Bugfix]: General: Close console window (and any other windows) on application close
173+
[Bugfix]: General: Improved the error handling when loading game files without manifest file with custom mods in the same folder. (Please dont do this!)
174+
[BugFix]: KitbashTool: Fixed issue that caused props to animate incorrectly in game due to Incorrect matrix and attachmentpoint for static meshes.
175+
[BugFix]: KitbashTool: Fixed and improved decal, dirt and skin material handling for older games
176+
[BugFix]: KitbashTool: Allowed 2 and 3 number of lods
171177

178+
[Feature]: KitbashTool: Second UV channel correctly handled for static meshes
179+
180+
[Internal] Changed animationMetadDataParser to be a singlenton with lazy init - To speed up loa ding and testing when the class is not needed
172181

173-
Finished for v058
182+
Finished for v059
174183
[Feature] Support for reading encrypted packfiles
175184

176185
[Bugfix] Kitbash: Fixed issue when generating WsModel for only visible meshes

Shared/SharedCore/Services/VersionChecker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Shared.Core.Services
88
public class VersionChecker
99
{
1010
private static readonly string GitHubLink = @"https://github.com/donkeyProgramming/TheAssetEditor/releases/latest";
11-
public static string CurrentVersion { get => "0.60"; }
11+
public static string CurrentVersion { get => "0.61"; }
1212

1313
public static void CheckVersion()
1414
{

0 commit comments

Comments
 (0)