Skip to content

Commit 7bd4005

Browse files
committed
Implemented ImGuiNotify from SKIV
1 parent 45e5300 commit 7bd4005

6 files changed

Lines changed: 739 additions & 1 deletion

File tree

LICENSE-3RD-PARTY

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ created by third-parties and licensed separately. The details of those are detai
66
This software is based on the following MIT licensed projects:
77

88
- Dear ImGui : Copyright (c) 2014-2024 Omar Cornut
9+
- ImGuiNotify : Copyright (c) 2021 Patrick, 2024 TyomaVader
910
- DirectX Texture Library : Copyright (c) Microsoft Corporation.
1011
- JSON for Modern C++ : Copyright (c) 2013-2022 Niels Lohmann
1112
- PicoSHA2 : Copyright (c) 2017 okdshin

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ SKIF supports detecting and launching games from the following platforms:
6868
## Third-party code
6969

7070
* Uses [Dear ImGui](https://github.com/ocornut/imgui), licensed under [MIT](https://github.com/ocornut/imgui/blob/master/LICENSE.txt).
71+
* Uses [ImGuiNotify](https://github.com/TyomaVader/ImGuiNotify), licensed under [MIT](https://github.com/TyomaVader/ImGuiNotify/blob/Dev/LICENSE).
7172
* Uses [DirectX Texture Library](http://go.microsoft.com/fwlink/?LinkId=248926), licensed under [MIT](https://github.com/microsoft/DirectXTex/blob/main/LICENSE).
7273
* Uses [Font Awesome Free v6.2.1](https://fontawesome.com/v6/download), licensed under [SIL OFL 1.1 License](https://scripts.sil.org/OFL).
7374
* Uses [JSON for Modern C++](https://github.com/nlohmann/json), licensed under [MIT](https://github.com/nlohmann/json/blob/develop/LICENSE.MIT).

SKIF.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -388,6 +388,7 @@
388388
<ClInclude Include="include\utility\gamepad.h" />
389389
<ClInclude Include="include\utility\plog_formatter.h" />
390390
<ClInclude Include="packages_misc\HybridDetect.h" />
391+
<ClInclude Include="packages_misc\ImGuiNotify.hpp" />
391392
<ClInclude Include="packages_misc\picosha2.h" />
392393
<ClInclude Include="packages_misc\stb_image.h" />
393394
<ClInclude Include="packages_misc\TextFlow.hpp" />

SKIF.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,9 @@
246246
<ClInclude Include="include\tabs\hardware.h">
247247
<Filter>Header Files\UI Tabs</Filter>
248248
</ClInclude>
249+
<ClInclude Include="packages_misc\ImGuiNotify.hpp">
250+
<Filter>Header Files\Packages_Misc</Filter>
251+
</ClInclude>
249252
</ItemGroup>
250253
<ItemGroup>
251254
<ClCompile Include="src\imgui\imgui.cpp">

0 commit comments

Comments
 (0)