Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Updating for patch 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tischel committed Jan 11, 2023
1 parent ccaa05e commit 7d575d7
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
10 changes: 5 additions & 5 deletions ActionTimeline/ActionTimeline.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Target">
<PlatformTarget>x64</PlatformTarget>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Platforms>x64</Platforms>
<Configurations>Debug;Release</Configurations>
Expand All @@ -10,9 +10,9 @@
<!-- Assembly Configuration -->
<PropertyGroup>
<AssemblyName>ActionTimeline</AssemblyName>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<InformationalVersion>1.0.0.0</InformationalVersion>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<InformationalVersion>1.1.0.0</InformationalVersion>
</PropertyGroup>

<!-- Build Configuration -->
Expand Down Expand Up @@ -97,6 +97,6 @@

<!-- NuGet Packages -->
<ItemGroup>
<PackageReference Include="DalamudPackager" Version="2.1.8" />
<PackageReference Include="DalamudPackager" Version="2.1.10" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion ActionTimeline/ActionTimeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"Description": "Configurable timeline display of all the actions you use.",
"RepoUrl": "https://github.com/Tischel/ActionTimeline",
"Tags": [ "UI" ],
"Changelog": "1.0.0.0\n- Moving plugin out of testing.\n- Fixed Red Mage's Resolution not behaving correctly in the timeline with GCD clipping enabled."
"Changelog": "1.1.0.0\n- Added support for Patch 6.3 and Dalamud Api8."
}
2 changes: 1 addition & 1 deletion ActionTimeline/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ KeyState keyState
AssemblyLocation = Assembly.GetExecutingAssembly().Location;
}

Version = Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? "1.0.0.0";
Version = Assembly.GetExecutingAssembly().GetName().Version?.ToString() ?? "1.1.0.0";

UiBuilder.Draw += Draw;
UiBuilder.OpenConfigUi += OpenConfigUi;
Expand Down
3 changes: 3 additions & 0 deletions ActionTimeline/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.1.0.0
- Added support for Patch 6.3 and Dalamud Api8.

# 1.0.0.0
- Moving plugin out of testing.
- Fixed Red Mage's Resolution not behaving correctly in the timeline with GCD clipping enabled.
Expand Down
8 changes: 4 additions & 4 deletions ActionTimeline/packages.lock.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"version": 1,
"dependencies": {
"net6.0": {
"net7.0": {
"DalamudPackager": {
"type": "Direct",
"requested": "[2.1.8, )",
"resolved": "2.1.8",
"contentHash": "YqagNXs9InxmqkXzq7kLveImxnodkBEicAhydMXVp7dFjC7xb76U6zGgAax4/BWIWfZeWzr5DJyQSev31kj81A=="
"requested": "[2.1.10, )",
"resolved": "2.1.10",
"contentHash": "S6NrvvOnLgT4GDdgwuKVJjbFo+8ZEj+JsEYk9ojjOR/MMfv1dIFpT8aRJQfI24rtDcw1uF+GnSSMN4WW1yt7fw=="
}
}
}
Expand Down

0 comments on commit 7d575d7

Please sign in to comment.