Skip to content

Commit f555fcb

Browse files
authored
Merge pull request #15 from FFXIV-CombatReborn/manifestFix
Fix for manifest issue, misc fixes, etc
2 parents d18cdaa + b8f6052 commit f555fcb

21 files changed

Lines changed: 16 additions & 16 deletions

.github/workflows/pr-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919

2020
- name: Download Dalamud Latest
2121
run: |
22-
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -OutFile latest.zip
22+
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/latest.zip -OutFile latest.zip
2323
Expand-Archive -Force latest.zip -DestinationPath "$env:AppData\XIVLauncher\addon\Hooks\dev"
2424
2525
- name: Restore NuGet Packages
2626
run: dotnet restore ActionTimelineEx/ActionTimelineReborn.csproj
2727

2828
- name: Build Plugin
29-
run: dotnet build --no-restore -c Release ActionTimelineEx/ActionTimelineReborn.csproj
29+
run: dotnet build --no-restore -c Release ActionTimelineReborn/ActionTimelineReborn.csproj

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727

2828
- name: Download Dalamud Latest
2929
run: |
30-
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/stg/latest.zip -OutFile latest.zip
30+
Invoke-WebRequest -Uri https://goatcorp.github.io/dalamud-distrib/latest.zip -OutFile latest.zip
3131
Expand-Archive -Force latest.zip "$env:AppData\XIVLauncher\addon\Hooks\dev"
3232
3333
- name: Restore Nuget Packages
3434
run: dotnet restore ActionTimelineEx/ActionTimelineReborn.csproj
3535

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

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

ActionTimelineReborn.sln

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
99
manifest.json = manifest.json
1010
EndProjectSection
1111
EndProject
12-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ActionTimelineReborn", "ActionTimelineEx\ActionTimelineReborn.csproj", "{875F9E4E-B981-46F7-93C2-68ABACCEA403}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ActionTimelineReborn", "ActionTimelineReborn\ActionTimelineReborn.csproj", "{875F9E4E-B981-46F7-93C2-68ABACCEA403}"
1313
EndProject
1414
Global
1515
GlobalSection(SolutionConfigurationPlatforms) = preSolution

ActionTimelineEx/ActionTimelineReborn.csproj renamed to ActionTimelineReborn/ActionTimelineReborn.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="ECommons" Version="3.2.0.9" />
15+
<PackageReference Include="ECommons" Version="3.2.0.16" />
1616
</ItemGroup>
1717

1818
<ItemGroup>

ActionTimelineEx/ActionTimelineReborn.json renamed to ActionTimelineReborn/ActionTimelineReborn.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
"Author": "The Combat Reborn Team",
33
"Name": "ActionTimeline Reborn",
44
"InternalName": "ActionTimelineReborn",
5-
"AssemblyVersion": "7.4.0.0",
5+
"RepoUrl": "https://github.com/FFXIV-CombatReborn/ActionTimelineReborn",
66
"Description": "Configurable timeline display of all the actions you use.",
77
"ApplicableVersion": "any",
8-
"RepoUrl": "https://github.com/FFXIV-CombatReborn/ActionTimelineReborn",
98
"Tags": [
109
"UI"
1110
],
@@ -17,10 +16,11 @@
1716
"LoadSync": false,
1817
"CanUnloadAsync": false,
1918
"LoadPriority": 0,
20-
"ImageUrls": [
21-
"https://github.com/FFXIV-CombatReborn/ActionTimelineReborn/raw/main/Images/example.gif"
22-
],
23-
"IconUrl": "https://github.com/FFXIV-CombatReborn/RebornAssets/blob/main/IconAssets/ATR_Icon.png",
19+
"IsTestingExclusive": false,
20+
"IconUrl": "https://raw.githubusercontent.com/FFXIV-CombatReborn/RebornAssets/main/IconAssets/ATR_Icon.png",
2421
"Punchline": "Show your actions in real-time.",
22+
"ImageUrls":[
23+
"https://raw.githubusercontent.com/ArchiDog1998/ActionTimelineReborn/main/Images/example.gif"
24+
],
2525
"AcceptsFeedback": true
26-
}
26+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)