chore: set version to 1.0.0

This commit is contained in:
Anna 2022-04-17 01:57:11 -04:00
parent bb4fdf7887
commit 0221cb06ab
3 changed files with 36 additions and 0 deletions

22
.build.yml Normal file
View File

@ -0,0 +1,22 @@
image: fedora/latest
packages:
- dotnet
- wget
- unzip
- zip
tasks:
- download-dalamud: |
mkdir dalamud
cd dalamud
wget https://github.com/goatcorp/dalamud-distrib/raw/main/latest.zip
unzip latest.zip
rm latest.zip
- build-plugin: |
cd TheHeartOfTheParty/TheHeartOfTheParty
dotnet build -c Release -p:IsCI=true
- package: |
cd TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows
zip -r release.zip TheHeartOfTheParty
artifacts:
- TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows/TheHeartOfTheParty/latest.zip
- TheHeartOfTheParty/TheHeartOfTheParty/bin/Release/net5.0-windows/release.zip

View File

@ -6,6 +6,8 @@
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>preview</LangVersion>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<PropertyGroup>
@ -43,4 +45,8 @@
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.7" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,8 @@
name: The Heart of the Party
author: ascclemens
punchline: Set your character's title - now with Searchalin!
description: |-
The Heart of the Party is a remake of the in-game title picker, but it
supports searching. Note that it doesn't add a command to set your title; use
the built-in /title command instead.
repo_url: https://git.annaclemens.io/ascclemens/TheHeartOfTheParty