Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Release #1

Merged
merged 1 commit into from
Apr 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Publish
on:
push:
tags:
- '*.*.*.*'
jobs:
Build:
permissions:
contents: write
runs-on: windows-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
submodules: true

- name: Get Environment Variables
run: |
$tag = "${{ github.ref }}" -replace 'refs/tags/', ''

"tag=$tag" | Out-File -Append -FilePath $Env:GITHUB_ENV

- name: Set up .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x

- name: Download Dalamud Latest
run: |
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/latest.zip -OutFile latest.zip
Expand-Archive -Force latest.zip "$env:AppData\XIVLauncher\addon\Hooks\dev"

- name: Restore Nuget Packages
run: dotnet restore ActionTimelineEx/ActionTimelineEx.csproj

- name: Build Plugin
run: dotnet build --no-restore -c Release ActionTimelineEx/ActionTimelineEx.csproj -p:AssemblyVersion=${{ env.tag }} -p:FileVersion=${{ env.tag }} -p:InformationalVersion=${{ env.tag }} --output .\build

- name: Zip Plugin
run: Compress-Archive -Path .\build\* -DestinationPath .\build\ActionTimelineReborn.zip

- name: Publish Plugin
uses: softprops/action-gh-release@v2
with:
files: ./build/ActionTimelineReborn.zip
token: ${{ secrets.GITHUB_TOKEN }}

79 changes: 0 additions & 79 deletions .github/workflows/release-please.yml

This file was deleted.

10 changes: 5 additions & 5 deletions ActionTimelineEx/ActionTimelineEx.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"Author": "Tischel, ArchiTed",
"Name": "ActionTimelineEx",
"InternalName": "ActionTimelineEx",
"Author": "The Combat Reborn Team",
"Name": "ActionTimeline Reborn",
"InternalName": "ActionTimelineReborn",
"AssemblyVersion": "1.3.6.0",
"Description": "Configurable timeline display of all the actions you use.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/ArchiDog1998/ActionTimelineEx",
"RepoUrl": "https://github.com/FFXIV-CombatReborn/ActionTimelineReborn",
"Tags": [
"UI"
],
Expand All @@ -18,7 +18,7 @@
"CanUnloadAsync": false,
"LoadPriority": 0,
"ImageUrls": [
"https://raw.githubusercontent.com/ArchiDog1998/ActionTimelineEx/main/Images/example.gif"
"https://raw.githubusercontent.com/FFXIV-CombatReborn/ActionTimelineReborn/main/Images/example.gif"
],
"IconUrl": "https://xivapi.com/i/000000/000073_hr1.png",
"Punchline": "Show your actions in real-time.",
Expand Down
15 changes: 8 additions & 7 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{
"Author": "Tischel, ArchiTed",
"Name": "ActionTimelineEx",
"InternalName": "ActionTimelineEx",
"Author": "The Combat Reborn Team",
"Name": "ActionTimeline Reborn",
"InternalName": "ActionTimelineReborn",
"AssemblyVersion": "1.3.6.0",
"Description": "Configurable timeline display of all the actions you use.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/FFXIV-CombatReborn/ActionTimelineReborn",
"Tags": [
"UI"
],
Expand All @@ -15,11 +17,10 @@
"LoadSync": false,
"CanUnloadAsync": false,
"LoadPriority": 0,
"IsTestingExclusive": false,
"ImageUrls": [
"https://raw.githubusercontent.com/FFXIV-CombatReborn/ActionTimelineReborn/main/Images/example.gif"
],
"IconUrl": "https://xivapi.com/i/000000/000073_hr1.png",
"Punchline": "Show your actions in real-time.",
"ImageUrls":[
"https://raw.githubusercontent.com/ArchiDog1998/ActionTimelineEx/main/Images/example.gif"
],
"AcceptsFeedback": true
}