Skip to content

Commit

Permalink
1.3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Nov 22, 2024
1 parent ee48ea0 commit 37332c4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Penumbra/Penumbra.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private void GatherRelevantPlugins(StringBuilder sb)
ReadOnlySpan<string> relevantPlugins =
[
"Glamourer", "MareSynchronos", "CustomizePlus", "SimpleHeels", "VfxEditor", "heliosphere-plugin", "Ktisis", "Brio", "DynamicBridge",
"IllusioVitae", "Aetherment",
"IllusioVitae", "Aetherment", "LoporritSync",
];
var plugins = _services.GetService<IDalamudPluginInterface>().InstalledPlugins
.GroupBy(p => p.InternalName)
Expand Down
18 changes: 18 additions & 0 deletions Penumbra/UI/Changelog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,28 @@ public PenumbraChangelog(Configuration config)
Add1_1_1_0(Changelog);
Add1_2_1_0(Changelog);
Add1_3_0_0(Changelog);
Add1_3_1_0(Changelog);
}

#region Changelogs

private static void Add1_3_1_0(Changelog log)
=> log.NextVersion("Version 1.3.1.0")
.RegisterEntry("Penumbra has been updated for Dalamud API 11 and patch 7.1.")
.RegisterImportant("There are some known issues with potential crashes using certain VFX/SFX mods, probably related to sound files.")
.RegisterEntry("If you encounter those issues, please report them in the discord and potentially disable the corresponding mods for the time being.", 1)
.RegisterImportant("The modding of .atch files has been disabled. Outdated modded versions of these files cause crashes when loaded.")
.RegisterEntry("A better way for modular modding of .atch files via meta changes will release to the testing branch soonish.", 1)
.RegisterHighlight("Temporary collections (as created by Mare) will now always respect ownership.")
.RegisterEntry("This means that you can toggle this setting off if you do not want it, and Mare will still work for minions and mounts of other players.", 1)
.RegisterEntry("The new physics and animation engine files (.kdb and .bnmb) should now be correctly redirected and respect EST changes.")
.RegisterEntry("Fixed issues with EQP entries being labeled wrongly and global EQP not changing all required values for earrings.")
.RegisterEntry("Fixed an issue with global EQP changes of a mod being reset upon reloading the mod.")
.RegisterEntry("Fixed another issue with left rings and mare synchronization / the on-screen tab.")
.RegisterEntry("Maybe fixed some issues with characters appearing in the login screen being misidentified.")
.RegisterEntry("Some improvements for debug visualization have been made.");


private static void Add1_3_0_0(Changelog log)
=> log.NextVersion("Version 1.3.0.0")

Expand Down

0 comments on commit 37332c4

Please sign in to comment.