patch-notes #66

Merged
defnotken merged 18 commits from patch-notes into 1.12.3 2025-10-19 20:01:15 +00:00
Showing only changes of commit ea8f8e3895 - Show all commits

View File

@@ -132,15 +132,7 @@ public class LightlessPlugin : MediatorSubscriberBase, IHostedService
_lightlessConfigService.Current.HasValidSetup() &&
_serverConfigurationManager.HasValidConfig())
{
// Update the last seen version to current version
_lightlessConfigService.Current.LastSeenVersion = currentVersion;
_lightlessConfigService.Save();
// Only show update notes if this isn't the first run
if (!string.IsNullOrEmpty(lastSeen))
{
Mediator.Publish(new UiToggleMessage(typeof(UpdateNotesUi)));
}
Mediator.Publish(new UiToggleMessage(typeof(UpdateNotesUi)));
}
}