8 Commits

Author SHA1 Message Date
885119dc47 yes
All checks were successful
Build and Release / Build (push) Successful in 24s
2025-12-18 10:19:45 +02:00
6f825ec210 Update to 7.4 build dalamud
Some checks failed
Build and Release / Build (push) Failing after 23s
2025-12-18 10:09:07 +02:00
6578f83dd8 Update to 7.4
Some checks failed
Build and Release / Build (push) Failing after 13s
2025-12-18 10:03:45 +02:00
cd23b9e381 yes 2025-08-06 17:01:25 +03:00
f299e04189 Upgrade 13 2025-08-06 17:01:08 +03:00
023418599e api13 2025-08-06 16:53:14 +03:00
b124838915 test 2025-08-06 15:58:06 +03:00
726ecc5688 Fixing readme 2025-06-24 18:10:16 +03:00
7 changed files with 37 additions and 25 deletions

View File

@@ -18,11 +18,11 @@ jobs:
- name: Set up .NET - name: Set up .NET
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: 9.0.x dotnet-version: 10.0.x
- name: Download Dalamud Latest - name: Download Dalamud Latest
run: | run: |
wget https://goatcorp.github.io/dalamud-distrib/latest.zip -O ${{ env.DALAMUD_HOME }}.zip wget https://kamori.goats.dev/File/Get/ad4daeb959d7549f9cc8ba721cddc84e5382819a37ff38bfb9439a9e4fd3fb7d -O ${{ env.DALAMUD_HOME }}.zip
unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }} unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }}
- name: Restore Project - name: Restore Project

View File

@@ -17,11 +17,11 @@ jobs:
- name: Set up .NET - name: Set up .NET
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: 9.0.x dotnet-version: 10.0.x
- name: Download Dalamud Latest - name: Download Dalamud Latest
run: | run: |
wget https://goatcorp.github.io/dalamud-distrib/latest.zip -O ${{ env.DALAMUD_HOME }}.zip wget https://kamori.goats.dev/File/Get/ad4daeb959d7549f9cc8ba721cddc84e5382819a37ff38bfb9439a9e4fd3fb7d -O ${{ env.DALAMUD_HOME }}.zip
unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }} unzip ${{ env.DALAMUD_HOME }}.zip -d ${{ env.DALAMUD_HOME }}
- name: Restore Project - name: Restore Project
@@ -30,6 +30,12 @@ jobs:
- name: Build Project - name: Build Project
run: dotnet build --configuration Release SpotifyHonorific/SpotifyHonorific.csproj -p:AssemblyVersion=${{ github.ref_name }} run: dotnet build --configuration Release SpotifyHonorific/SpotifyHonorific.csproj -p:AssemblyVersion=${{ github.ref_name }}
- name: Create Release Asset
run: |
cd SpotifyHonorific/bin/Release
zip -r ../../../latest.zip .
cd ../../..
- name: Create Release - name: Create Release
uses: actions/create-release@v1 uses: actions/create-release@v1
id: create_release id: create_release
@@ -45,7 +51,7 @@ jobs:
run: | run: |
curl \ curl \
-X POST \ -X POST \
-H "Authorization: token ${{ gitea.token }}" \ -H "Authorization: token ${{ github.token }}" \
-H "Content-Type: application/zip" \ -H "Content-Type: application/zip" \
--data-binary @SpotifyHonorific/bin/Release/SpotifyHonorific/latest.zip \ --data-binary @latest.zip \
"${{ steps.create_release.outputs.upload_url }}?name=latest.zip" "${{ steps.create_release.outputs.upload_url }}?name=latest.zip"

View File

@@ -2,10 +2,6 @@
Update honorific title based on discord activity informations. Update honorific title based on discord activity informations.
## Installation
Installable using my custom repository (instructions here: https://github.com/anya-hichu/DalamudPluginRepo) or from compiled archives.
## Commands ## Commands

View File

@@ -1,12 +1,22 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Dalamud.NET.Sdk/12.0.2"> <Project Sdk="Dalamud.NET.Sdk/14.0.0">
<PropertyGroup> <PropertyGroup>
<Description>Update honorific title based on spotify informations</Description> <Description>Update honorific title based on spotify informations</Description>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<TargetFramework>net9.0-windows7.0</TargetFramework> <TargetFramework>net10.0-windows7.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Scriban" Version="6.0.0" /> <PackageReference Include="Scriban" Version="6.5.2" />
</ItemGroup>
<ItemGroup>
<Reference Remove="ImGui.NET" />
<Reference Include="Dalamud.Bindings.ImGui" Private="false" />
<Reference Include="Dalamud.Bindings.ImPlot" Private="false" />
<Reference Include="Dalamud.Bindings.ImGuizmo" Private="false" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="DalamudPackager" Version="14.0.0" />
<PackageReference Update="DotNet.ReproducibleBuilds" Version="1.2.39" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,7 +1,7 @@
using Dalamud.Interface.Utility; using Dalamud.Interface.Utility;
using ImGuiNET; using Dalamud.Bindings.ImGui;
using System.Numerics; using System.Numerics;
namespace SpotifyHonorific.Utils; namespace SpotifyHonorific.Utils;

View File

@@ -2,7 +2,7 @@ using Dalamud.Interface.Windowing;
using Dalamud.Utility; using Dalamud.Utility;
using SpotifyHonorific.Updaters; using SpotifyHonorific.Updaters;
using SpotifyHonorific.Utils; using SpotifyHonorific.Utils;
using ImGuiNET; using Dalamud.Bindings.ImGui;
using System.Numerics; using System.Numerics;
namespace SpotifyHonorific.Windows; namespace SpotifyHonorific.Windows;

View File

@@ -1,24 +1,24 @@
{ {
"version": 1, "version": 1,
"dependencies": { "dependencies": {
"net9.0-windows7.0": { "net10.0-windows7.0": {
"DalamudPackager": { "DalamudPackager": {
"type": "Direct", "type": "Direct",
"requested": "[12.0.0, )", "requested": "[14.0.0, )",
"resolved": "12.0.0", "resolved": "14.0.0",
"contentHash": "J5TJLV3f16T/E2H2P17ClWjtfEBPpq3yxvqW46eN36JCm6wR+EaoaYkqG9Rm5sHqs3/nK/vKjWWyvEs/jhKoXw==" "contentHash": "9c1q/eAeAs82mkQWBOaCvbt3GIQxAIadz5b/7pCXDIy9nHPtnRc+tDXEvKR+M36Wvi7n+qBTevRupkLUQp6DFA=="
}, },
"DotNet.ReproducibleBuilds": { "DotNet.ReproducibleBuilds": {
"type": "Direct", "type": "Direct",
"requested": "[1.2.25, )", "requested": "[1.2.39, )",
"resolved": "1.2.25", "resolved": "1.2.39",
"contentHash": "xCXiw7BCxHJ8pF6wPepRUddlh2dlQlbr81gXA72hdk4FLHkKXas7EH/n+fk5UCA/YfMqG1Z6XaPiUjDbUNBUzg==" "contentHash": "fcFN01tDTIQqDuTwr1jUQK/geofiwjG5DycJQOnC72i1SsLAk1ELe+apBOuZ11UMQG8YKFZG1FgvjZPbqHyatg=="
}, },
"Scriban": { "Scriban": {
"type": "Direct", "type": "Direct",
"requested": "[6.0.0, )", "requested": "[6.5.2, )",
"resolved": "6.0.0", "resolved": "6.5.2",
"contentHash": "MZOtxtcehrCGiVwHpdcZQSe04Zy4IJfltVZdmlr1nFvSvEXnu50SWa7fonC0bqfMyTnNhQcY9BmEt882P129qw==" "contentHash": "JXli/Sh1WVZs/pqnPPRJTlwEsZHPJtndzxiaPnrteXDpAqVqHxh4ifhx4puTaYKVMPJUMOp9bnCpEVBpYlt/eQ=="
} }
} }
} }