Compare commits

..

2 Commits

Author SHA1 Message Date
4f07dba409 Update check for other clients to correctly find Snowcloak. 2025-09-12 19:42:13 +01:00
003fc77628 Update workflows. 2025-09-12 19:41:41 +01:00
2 changed files with 6 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
name: Release
name: Build and Update Repo
on:
push:
@@ -10,7 +10,7 @@ env:
DOTNET_VERSION: 9.x
jobs:
tag-and-release:
build-and-update-repo:
runs-on: ubuntu-latest
permissions:
contents: write
@@ -79,7 +79,9 @@ jobs:
if .InternalName == $internalName
then
.DalamudApiLevel = $dalamudApiLevel
| .TestingDalamudApiLevel = $dalamudApiLevel
| .AssemblyVersion = $version
| .TestingAssemblyVersion = $version
| .DownloadLinkInstall = $downloadUrl
| .DownloadLinkTesting = $downloadUrl
| .DownloadLinkUpdate = $downloadUrl

View File

@@ -28,9 +28,9 @@ public sealed class IpcCallerOtherSync : DisposableMediatorSubscriberBase
_lightlessLoaded = msg.IsLoaded;
});
_snowcloakLoaded = PluginWatcherService.GetInitialPluginState(pi, "SnowcloakSync")?.IsLoaded ?? false;
_snowcloakLoaded = PluginWatcherService.GetInitialPluginState(pi, "Snowcloak")?.IsLoaded ?? false;
Mediator.SubscribeKeyed<PluginChangeMessage>(this, "SnowcloakSync", (msg) =>
Mediator.SubscribeKeyed<PluginChangeMessage>(this, "Snowcloak", (msg) =>
{
_snowcloakLoaded = msg.IsLoaded;
});