Skip to content

Commit

Permalink
v1.9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0ceal0t committed Oct 19, 2024
1 parent c1a5d9a commit 01b0645
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions VFXEditor/Formats/TmbFormat/Track/Tmtr.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,9 @@ public void DeleteEntry( List<ICommand> commands, TmbEntry entry ) {
}

public void DeleteAllEntries( List<ICommand> commands ) {
for( int i = Entries.Count - 1; i >= 0; i-- ) {
commands.Add( new ListRemoveCommand<TmbEntry>( Entries, Entries.ElementAt( i ) ) );
foreach( var entry in new List<TmbEntry>( Entries ) ) {
commands.Add( new ListRemoveCommand<TmbEntry>( Entries, entry ) );
commands.Add( new ListRemoveCommand<TmbEntry>( File.AllEntries, entry ) );
}
}

Expand Down
4 changes: 2 additions & 2 deletions VFXEditor/VFXEditor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<Company></Company>
<Product>VFXEditor</Product>
<Copyright>Copyright © 2020</Copyright>
<FileVersion>1.9.0.9</FileVersion>
<AssemblyVersion>1.9.0.9</AssemblyVersion>
<FileVersion>1.9.1.0</FileVersion>
<AssemblyVersion>1.9.1.0</AssemblyVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
Expand Down
2 changes: 1 addition & 1 deletion VFXEditor/VFXEditor.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" ],
Expand Down

0 comments on commit 01b0645

Please sign in to comment.