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

Commit

Permalink
Merge pull request #44 from lichie567/6.11
Browse files Browse the repository at this point in the history
6.11
  • Loading branch information
lichie567 authored Apr 27, 2022
2 parents 7a652c8 + cac70c5 commit 8826c59
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.2.2.0")]
[assembly: AssemblyFileVersion("0.2.2.0")]
[assembly: AssemblyVersion("0.2.2.1")]
[assembly: AssemblyFileVersion("0.2.2.1")]
2 changes: 1 addition & 1 deletion XIVAuras/Helpers/SpellHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public unsafe void GetAdjustedRecastInfo(uint actionId, out RecastInfo recastInf
return;
}

public unsafe bool CanUseAction(uint actionId, uint targetId = 0xE000_0000)
public unsafe bool CanUseAction(uint actionId, long targetId = 0xE000_0000)
{
return _actionManager->GetActionStatus(ActionType.Spell, actionId, targetId, 0, 1) == 0;
}
Expand Down
2 changes: 1 addition & 1 deletion XIVAuras/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Plugin : IDalamudPlugin
{
public const string ConfigFileName = "XIVAuras.json";

public static string Version { get; private set; } = "0.2.2.0";
public static string Version { get; private set; } = "0.2.2.1";

public static string ConfigFileDir { get; private set; } = "";

Expand Down
6 changes: 3 additions & 3 deletions XIVAuras/XIVAuras.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<!-- Assembly Configuration -->
<PropertyGroup>
<AssemblyName>XIVAuras</AssemblyName>
<AssemblyVersion>0.2.2.0</AssemblyVersion>
<FileVersion>0.2.2.0</FileVersion>
<InformationalVersion>0.2.2.0</InformationalVersion>
<AssemblyVersion>0.2.2.1</AssemblyVersion>
<FileVersion>0.2.2.1</FileVersion>
<InformationalVersion>0.2.2.1</InformationalVersion>
</PropertyGroup>

<!-- Build Configuration -->
Expand Down
6 changes: 6 additions & 0 deletions XIVAuras/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 0.2.2.1
- Updated for patch 6.11

# Version 0.2.2.0
- Updated for patch 6.1

# Version 0.2.1.0
- Added Visibility option 'Hide While Weapon Sheathed'
- Added Visibility option to Hide by Player Level
Expand Down

0 comments on commit 8826c59

Please sign in to comment.