Skip to content

Commit c53c5ec

Browse files
committed
ver bump -> 3.0.7
1 parent 51c9c73 commit c53c5ec

15 files changed

+32
-17
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<OutputPath_Global>__UNDEFINED__</OutputPath_Global>
44
<OutputPath_Global Condition="Exists('$(SolutionDir)OutputPath.vsmacro')">"$([System.IO.File]::ReadAllText('$(SolutionDir)OutputPath.vsmacro').trim())"</OutputPath_Global>
5-
<VersionPrefix>3.1.6.0</VersionPrefix>
5+
<VersionPrefix>3.1.7.0</VersionPrefix>
66
</PropertyGroup>
77
</Project>
88

HCMExternal/ExternalPointerData.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<LatestHCMVersions>
77
<Entry>3.1.5.0</Entry>
88
<Entry>3.1.6.0</Entry>
9+
<Entry>3.1.7.0</Entry>
910
</LatestHCMVersions>
1011

1112
<!--If the current HCM is one of these, HCM will refuse to start and the user will be prompted to update-->

HCMInternal/GUIElementConstructor.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,8 +1367,8 @@ class GUIElementConstructor::GUIElementConstructorImpl {
13671367

13681368

13691369
case GUIElementEnum::shieldInputPrinterToggle:
1370-
return std::optional<std::shared_ptr<IGUIElement>>(std::make_shared<GUISimpleToggle<false>>
1371-
(game, ToolTipCollection("Locks onto nearest deployable shield; when shield disabled, prints which tick you pressed movement inputs"), std::nullopt, "Shield Input Printer", settings->shieldInputPrinterToggle));
1370+
return std::optional<std::shared_ptr<IGUIElement>>(std::make_shared<GUISimpleToggle<true>>
1371+
(game, ToolTipCollection("Locks onto nearest deployable shield; when shield disabled, prints which tick you pressed movement inputs"), RebindableHotkeyEnum::shieldInputPrinterToggleHotkey, "Shield Input Printer", settings->shieldInputPrinterToggle));
13721372

13731373
case GUIElementEnum::abilityMeterOverlayToggle:
13741374
return std::optional<std::shared_ptr<IGUIElement>>(std::make_shared<GUISimpleToggle<true>>

HCMInternal/HCMInternal.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 3,1,6,0
55-
PRODUCTVERSION 3,1,6,0
54+
FILEVERSION 3,1,7,0
55+
PRODUCTVERSION 3,1,7,0
5656
FILEFLAGSMASK 0x3fL
5757
#ifdef _DEBUG
5858
FILEFLAGS 0x1L

HCMInternal/HCMInternal.vcxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ IF EXIST "C:\Program Files\LockHunter\LockHunter.exe" (
234234
</PostBuildEvent>
235235
</ItemDefinitionGroup>
236236
<ItemGroup>
237-
<ClInclude Include="Beeper.h" />
238237
<ClInclude Include="BitBoolPointer.h" />
239238
<ClInclude Include="BSPChangeHookEvent.h" />
240239
<ClInclude Include="ChangeOOBBackground.h" />

HCMInternal/HCMInternal.vcxproj.filters

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,9 +1039,6 @@
10391039
<ClInclude Include="ManagedResource.h">
10401040
<Filter>Classes</Filter>
10411041
</ClInclude>
1042-
<ClInclude Include="Beeper.h">
1043-
<Filter>Services</Filter>
1044-
</ClInclude>
10451042
<ClInclude Include="resource.h">
10461043
<Filter>Resource Files</Filter>
10471044
</ClInclude>

HCMInternal/HotkeyDefinitions.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,12 @@ class HotkeyDefinitions {
8686
const std::map<RebindableHotkeyEnum, std::shared_ptr<EventOnPressHotkey>>::value_type allEventOnPressHotkeysData[allEventOnPressHotkeyEnumCount]
8787
{
8888

89+
90+
91+
initEventOnPressHotkey(shieldInputPrinterToggleHotkey,
92+
mSettings->shieldInputPrinterHotkeyEvent,
93+
vsk{}),
94+
8995
initEventOnPressHotkey(toggleGUI,
9096
mSettings->toggleGUIHotkeyEvent,
9197
vsk{{ ImGuiKey_GraveAccent }}),

HCMInternal/HotkeyEventsLambdas.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ class HotkeyEventsLambdas
2929
ScopedCallback<ActionEvent> msoftCeilingOverlayToggleHotkeyEventCallbackHandle;
3030
ScopedCallback<ActionEvent> mabilityMeterToggleHotkeyEventCallbackHandle;
3131
ScopedCallback<ActionEvent> msensDriftOverlayToggleHotkeyEventCallbackHandle;
32+
ScopedCallback<ActionEvent> mshieldInputPrinterToggleHotkeyEventCallbackHandle;
33+
3234

3335
public:
3436
HotkeyEventsLambdas(std::shared_ptr< SettingsStateAndEvents> settings)
@@ -53,7 +55,8 @@ class HotkeyEventsLambdas
5355
mdisableBarriersHotkeyEventCallbackHangle(settings->disableBarriersHotkeyEvent, [boolsettings = settings->disableBarriersToggle]() {boolsettings->flipBoolSetting(); }),
5456
msoftCeilingOverlayToggleHotkeyEventCallbackHandle(settings->softCeilingOverlayToggleHotkeyEvent, [boolsetting = settings->softCeilingOverlayToggle]() {boolsetting->flipBoolSetting(); }),
5557
mabilityMeterToggleHotkeyEventCallbackHandle(settings->abilityMeterToggleHotkeyEvent, [boolsetting = settings->abilityMeterOverlayToggle]() {boolsetting->flipBoolSetting(); }),
56-
msensDriftOverlayToggleHotkeyEventCallbackHandle(settings->sensDriftOverlayToggleHotkeyEvent, [boolsetting = settings->sensDriftOverlayToggle]() {boolsetting->flipBoolSetting(); })
58+
msensDriftOverlayToggleHotkeyEventCallbackHandle(settings->sensDriftOverlayToggleHotkeyEvent, [boolsetting = settings->sensDriftOverlayToggle]() {boolsetting->flipBoolSetting(); }),
59+
mshieldInputPrinterToggleHotkeyEventCallbackHandle(settings->shieldInputPrinterHotkeyEvent, [boolsetting = settings->shieldInputPrinterToggle]() {boolsetting->flipBoolSetting(); })
5760

5861

5962
{ PLOG_DEBUG << "HotkeyEvents con"; }

HCMInternal/HotkeysEnum.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ softCeilingOverlayToggleHotkey,\
6060
abilityMeterToggleHotkey,\
6161
sensResetCountHotkey,\
6262
sensDriftOverlayToggleHotkey,\
63-
toggleViewAngleLine3D
63+
toggleViewAngleLine3D,\
64+
shieldInputPrinterToggleHotkey
6465

6566

6667

HCMInternal/InternalPointerData.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
<SupportedHCMVersions>
1717
<Entry>3.1.5.0</Entry>
1818
<Entry>3.1.6.0</Entry>
19+
<Entry>3.1.7.0</Entry>
1920
</SupportedHCMVersions>
2021

2122

0 commit comments

Comments
 (0)