Files
JonKazama-Hellion 6e9a4abd8a
CI / build (push) Failing after 18s
Merge official Dalamud sample plugin into template
- Replace Plugin.cs/ConfigWindow.cs skeleton with working sample code
- Add MainWindow.cs (goat-image demo + PlayerState/Lumina queries)
- Rename src/PluginConfiguration.cs → src/Configuration.cs (sample naming)
- Add Data/goat.png sample asset
- Add src/packages.lock.json (NuGet lockfile from sample)
- Add PluginNameTemplate.sln solution file
- Bump csproj from Dalamud.NET.Sdk 13.0.0 → 15.0.0
- Bump yaml dalamud_api_level: 13 → 15
- Update README with sample-removal walkthrough and SDK-bump section

Template now builds end-to-end out of the box. Goat demo
intact for verification; strip per README when implementing
the real plugin.
2026-05-09 17:15:26 +02:00

33 lines
1.1 KiB
YAML

# Dalamud manifest. Used by the official plugin repo and by custom repos
# (see repo.json). Keep in sync with .csproj and repo.json on every version bump.
name: PluginNameTemplate
author: Florian Wathling
punchline: Short tag-line that shows in the plugin installer.
description: |
Longer description of what your plugin does. Markdown is supported in some
Dalamud versions; safest to keep it plain text. Multi-line is fine.
repo_url: https://gitea.hellion-forge.cloud/Hellion-Forge/PluginNameTemplate
icon_url: https://gitea.hellion-forge.cloud/Hellion-Forge/PluginNameTemplate/raw/branch/main/images/icon.png
assembly_version: 0.1.0
testing_assembly_version: 0.1.0
# Dalamud.NET.Sdk 15.0.0 targets API level 15. Check the SDK release notes
# when bumping (the API level usually moves with major SDK updates).
dalamud_api_level: 15
categories:
- utility
tags:
- hellion-forge
changelog: |
v0.1.0
- Initial release based on the official Dalamud sample plugin (goat demo intact).
# Don't override DalamudPackager defaults. The SDK reads icon and image_urls
# from the .csproj <None Include="images\icon.png" /> entry automatically.