Skip to content

Commit

Permalink
AutoHook 2.4.3.0 [PUSH]
Browse files Browse the repository at this point in the history
#69 (nice) added by a08381
  • Loading branch information
InitialDet committed Feb 25, 2023
1 parent 78964e9 commit e217747
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 21 deletions.
2 changes: 1 addition & 1 deletion AutoHook/AutoHook.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Det</Authors>
<Version>2.4.2.3</Version>
<Version>2.4.3.0</Version>
<Description>Auto hooks for you</Description>
<PackageProjectUrl>https://github.com/InitialDet/AutoHook</PackageProjectUrl>
<Configurations>Release;Debug</Configurations>
Expand Down
45 changes: 25 additions & 20 deletions AutoHook/Ui/TabGeneral.cs
Original file line number Diff line number Diff line change
Expand Up @@ -132,32 +132,37 @@ private void DrawChangelog()
if (ImGui.Begin("Changelog", ref openChangelog, ImGuiWindowFlags.AlwaysAutoResize))
{
ImGui.PushStyleColor(ImGuiCol.Text, ImGuiColors.DalamudYellow);
ImGui.TextWrapped("2.4.2.0");
ImGui.TextWrapped("2.4.3.0");
ImGui.PopStyleColor();
ImGui.Separator();
ImGui.TextWrapped("- Added customizable hitbox for autogig");
ImGui.Indent();
ImGui.TextWrapped("Each Size and Speed combination has its own hitbox config");
ImGui.Unindent();
ImGui.TextWrapped("- Added an option to see the fish hitbox when spearfishing");
ImGui.TextWrapped("- (experimental) Nature's Bounty will be used when the target fish appears on screen ");
ImGui.TextWrapped("- Added changelog button");

ImGui.Separator();

if (ImGui.TreeNode("2.4.2.X - Small Fixes"))
{
ImGui.TextWrapped("- Gig hitbox is now enabled by default");
ImGui.TextWrapped("- Fixed the order of the Chum Timer Min/Max fields");
ImGui.TextWrapped("- Fixed some options not saving correctly");
ImGui.TreePop();
}

ImGui.Separator();
ImGui.TextWrapped("- Added Watered Cortials for AutoCasts");

ImGui.Spacing();

if (ImGui.BeginChild("old_versions", new Vector2(0, 150), true))
{
if (ImGui.TreeNode("2.4.2.0"))
{
ImGui.TextWrapped("- Added customizable hitbox for autogig");
ImGui.Indent();
ImGui.TextWrapped("Each Size and Speed combination has its own hitbox config");
ImGui.Unindent();
ImGui.TextWrapped("- Added an option to see the fish hitbox when spearfishing");
ImGui.TextWrapped("- (experimental) Nature's Bounty will be used when the target fish appears on screen ");
ImGui.TextWrapped("- Added changelog button");

ImGui.Spacing();
ImGui.Separator();
ImGui.Spacing();

ImGui.TextWrapped("2.4.2.X");
ImGui.TextWrapped("- Gig hitbox is now enabled by default");
ImGui.TextWrapped("- Fixed the order of the Chum Timer Min/Max fields");
ImGui.TextWrapped("- Fixed some options not saving correctly");

ImGui.TreePop();
}

if (ImGui.TreeNode("2.4.1.0"))
{
ImGui.TextWrapped("- Added options to cast Mooch only when under the effect of Fisher's Intuition");
Expand Down

0 comments on commit e217747

Please sign in to comment.