From 01b0645c314239a944aa4dfb7361a3e436e9f873 Mon Sep 17 00:00:00 2001 From: ocealot Date: Sat, 19 Oct 2024 16:58:44 -0400 Subject: [PATCH] v1.9.1.0 --- VFXEditor/Formats/TmbFormat/Track/Tmtr.cs | 5 +++-- VFXEditor/VFXEditor.csproj | 4 ++-- VFXEditor/VFXEditor.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/VFXEditor/Formats/TmbFormat/Track/Tmtr.cs b/VFXEditor/Formats/TmbFormat/Track/Tmtr.cs index 6b05fff7..f4570165 100644 --- a/VFXEditor/Formats/TmbFormat/Track/Tmtr.cs +++ b/VFXEditor/Formats/TmbFormat/Track/Tmtr.cs @@ -152,8 +152,9 @@ public void DeleteEntry( List commands, TmbEntry entry ) { } public void DeleteAllEntries( List commands ) { - for( int i = Entries.Count - 1; i >= 0; i-- ) { - commands.Add( new ListRemoveCommand( Entries, Entries.ElementAt( i ) ) ); + foreach( var entry in new List( Entries ) ) { + commands.Add( new ListRemoveCommand( Entries, entry ) ); + commands.Add( new ListRemoveCommand( File.AllEntries, entry ) ); } } diff --git a/VFXEditor/VFXEditor.csproj b/VFXEditor/VFXEditor.csproj index 23fe40db..a58d85e6 100644 --- a/VFXEditor/VFXEditor.csproj +++ b/VFXEditor/VFXEditor.csproj @@ -6,8 +6,8 @@ VFXEditor Copyright © 2020 - 1.9.0.9 - 1.9.0.9 + 1.9.1.0 + 1.9.1.0 true false true diff --git a/VFXEditor/VFXEditor.json b/VFXEditor/VFXEditor.json index 4052ff63..301a01d5 100644 --- a/VFXEditor/VFXEditor.json +++ b/VFXEditor/VFXEditor.json @@ -4,7 +4,7 @@ "Punchline": "VFX editor and viewer", "Description": "VFX, animation, and sound editing plugin. Icon by PAPACHIN", "InternalName": "VFXEditor", - "AssemblyVersion": "1.9.0.9", + "AssemblyVersion": "1.9.1.0", "RepoUrl": "https://github.com/0ceal0t/Dalamud-VFXEditor", "ApplicableVersion": "any", "Tags": [ "VFX", "AVFX" ],