Skip to content

Commit

Permalink
Update for 1.1.2.0 Release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Apr 21, 2021
1 parent 3357f46 commit 87f436a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions AutoVisor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<LangVersion>preview</LangVersion>
<RootNamespace>AutoVisor</RootNamespace>
<AssemblyName>AutoVisor</AssemblyName>
<FileVersion>1.1.1.1</FileVersion>
<AssemblyVersion>1.1.1.1</AssemblyVersion>
<FileVersion>1.1.2.0</FileVersion>
<AssemblyVersion>1.1.2.0</AssemblyVersion>
<Company>SoftOtter</Company>
<Product>GatherBuddy</Product>
<Copyright>Copyright © 2020</Copyright>
Expand Down Expand Up @@ -79,6 +79,6 @@
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if $(Configuration) == Release powershell Compress-Archive -Force $(TargetPath), $(TargetDir)$(SolutionName).json $(ProjectDir)$(SolutionName).zip" />
<Exec Command="if $(Configuration) == Release powershell Compress-Archive -Force $(TargetPath), $(TargetDir)$(SolutionName).pdb, $(TargetDir)$(SolutionName).json $(ProjectDir)$(SolutionName).zip" />
</Target>
</Project>
2 changes: 1 addition & 1 deletion AutoVisor.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Name": "AutoVisor",
"Description": "Automatically change visor, headslot hiding, and weapon hiding status for different player states.",
"InternalName": "AutoVisor",
"AssemblyVersion": "1.1.1.1",
"AssemblyVersion": "1.1.2.0",
"RepoUrl": "https://github.com/Ottermandias/AutoVisor",
"ApplicableVersion": "any",
"DalamudApiLevel": 3
Expand Down
Binary file modified AutoVisor.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion Classes/EqpFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public byte[] WriteBytes()
public ulong GetEntry(ushort idx)
{
// Skip the zeroth item.
idx = idx == 0 ? 1 : idx;
idx = idx == 0 ? (ushort) 1 : idx;
var block = BlockIdx(idx);
var array = block < _blocks.Length ? _blocks[block] : null;
return array?[SubIdx(idx)] ?? 0;
Expand Down
4 changes: 2 additions & 2 deletions repo.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"Name": "AutoVisor [T]",
"Description": "Automatically change visor, headslot hiding, and weapon hiding status for different player states.",
"InternalName": "AutoVisor",
"AssemblyVersion": "1.1.1.1",
"TestingAssemblyVersion": "1.1.1.2",
"AssemblyVersion": "1.1.2.0",
"TestingAssemblyVersion": "1.1.2.0",
"RepoUrl": "https://github.com/Ottermandias/AutoVisor",
"ApplicableVersion": "any",
"DalamudApiLevel": 3,
Expand Down

0 comments on commit 87f436a

Please sign in to comment.