From d39563ef5ecb3f46ace82a6ad2a35a35ca1563ba Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Tue, 23 Dec 2025 23:32:08 +0100 Subject: [PATCH] update for API14 fix #1 --- Pilz.Dalamud | 2 +- PlayerTags/Data/Tag.cs | 2 +- PlayerTags/PlayerTags.csproj | 9 +++++++-- PlayerTags/packages.lock.json | 14 +++++++------- README.md | 6 +++--- 5 files changed, 19 insertions(+), 14 deletions(-) diff --git a/Pilz.Dalamud b/Pilz.Dalamud index 62ce794..f217578 160000 --- a/Pilz.Dalamud +++ b/Pilz.Dalamud @@ -1 +1 @@ -Subproject commit 62ce794e8bce9413f34e53a3c9aa64aaee3aa7fe +Subproject commit f2175783761cd780319684976c7c999f4543f9b3 diff --git a/PlayerTags/Data/Tag.cs b/PlayerTags/Data/Tag.cs index affd8fc..d7a003c 100644 --- a/PlayerTags/Data/Tag.cs +++ b/PlayerTags/Data/Tag.cs @@ -75,7 +75,7 @@ public class Tag { m_Inheritables = []; - var inheritableFields = GetType().GetFields().Where(field => typeof(IInheritable).IsAssignableFrom(field.FieldType)); + var inheritableFields = GetType().GetFields().Where(f => typeof(IInheritable).IsAssignableFrom(f.FieldType)); foreach (var inheritableField in inheritableFields) { IInheritable? inheritable = inheritableField.GetValue(this) as IInheritable; diff --git a/PlayerTags/PlayerTags.csproj b/PlayerTags/PlayerTags.csproj index 86f0dd3..c2d3c3d 100644 --- a/PlayerTags/PlayerTags.csproj +++ b/PlayerTags/PlayerTags.csproj @@ -1,8 +1,8 @@ - + r00telement;Pilzinsel64 - 1.12.3.0 + 1.12.4.0 @@ -46,4 +46,9 @@ + + + + + \ No newline at end of file diff --git a/PlayerTags/packages.lock.json b/PlayerTags/packages.lock.json index 4c6b6f5..ef88951 100644 --- a/PlayerTags/packages.lock.json +++ b/PlayerTags/packages.lock.json @@ -1,18 +1,18 @@ { "version": 1, "dependencies": { - "net9.0-windows7.0": { + "net10.0-windows7.0": { "DalamudPackager": { "type": "Direct", - "requested": "[13.0.0, )", - "resolved": "13.0.0", - "contentHash": "Mb3cUDSK/vDPQ8gQIeuCw03EMYrej1B4J44a1AvIJ9C759p9XeqdU9Hg4WgOmlnlPe0G7ILTD32PKSUpkQNa8w==" + "requested": "[14.0.1, )", + "resolved": "14.0.1", + "contentHash": "y0WWyUE6dhpGdolK3iKgwys05/nZaVf4ZPtIjpLhJBZvHxkkiE23zYRo7K7uqAgoK/QvK5cqF6l3VG5AbgC6KA==" }, "DotNet.ReproducibleBuilds": { "type": "Direct", - "requested": "[1.2.25, )", - "resolved": "1.2.25", - "contentHash": "xCXiw7BCxHJ8pF6wPepRUddlh2dlQlbr81gXA72hdk4FLHkKXas7EH/n+fk5UCA/YfMqG1Z6XaPiUjDbUNBUzg==" + "requested": "[1.2.39, )", + "resolved": "1.2.39", + "contentHash": "fcFN01tDTIQqDuTwr1jUQK/geofiwjG5DycJQOnC72i1SsLAk1ELe+apBOuZ11UMQG8YKFZG1FgvjZPbqHyatg==" }, "pilz.dalamud": { "type": "Project" diff --git a/README.md b/README.md index e37bff7..3f6c1c4 100644 --- a/README.md +++ b/README.md @@ -4,14 +4,14 @@ Lightweight job visibility in nameplates and chat. Create custom tags and add th ## Install -### Via official plugin repo +### Official plugin repo This plugin is available via the official plugin repository of Dalamud. Just search for "Player Tags" and install. -### Via third party repo +### Third party repo For the case you want instant updates, feel free to add my third party repo for this plugin:\ -`https://git.pilzinsel64.de/pilzinsel64/playertags/-/snippets/5/raw/main/pluginmaster.json` +`https://git.pilzinsel64.de/Pilzinsel64/PlayerTags/raw/branch/updates/pluginmaster.json` ## Contribution