3 Commits

Author SHA1 Message Date
60c1668492 1.7.1.2
All checks were successful
Build and Update Repo / build-and-update-repo (push) Successful in 1m9s
2025-09-14 01:09:29 +01:00
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
3 changed files with 7 additions and 5 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;
});

View File

@@ -2,7 +2,7 @@
<Project Sdk="Dalamud.NET.Sdk/13.1.0">
<PropertyGroup>
<AssemblyName>ClubPenguinSync</AssemblyName>
<Version>1.7.1.1</Version>
<Version>1.7.1.2</Version>
<PackageProjectUrl>https://github.com/Rawrington/ClubPenguinSync/</PackageProjectUrl>
</PropertyGroup>