Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0.2 #2

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Doxygen GitHub Pages Deploy Action

on:
push:
branches:
- dev-v1.0.2

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: DenverCoder1/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Lib/
Build/
Distribute/
/Distribute.ps1.log
/Distribute.ps1.log
/README.html
# Doxygen output:
latex/
html/
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "Lib/MinHook"]
path = Lib/MinHook
url = https://github.com/TsudaKageyu/minhook.git
[submodule "Lib/imgui"]
path = Lib/imgui
url = https://github.com/ocornut/imgui.git
[submodule "Lib/implot"]
path = Lib/implot
url = https://github.com/epezent/implot.git
21 changes: 14 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,26 +36,33 @@
## Version 1.0.2 - 23 Jun 2022

### Added

- Add to instructions in *README.md*.
- Add setup subheadings to table of contents.
- Add ImPlot extension instructions section.
- Add ImPlot example code to *Examples/Fm.cpp*.
- Create CMakeLists.txt (not in use).
- *FmGui.hpp*:
- *FmGui.cpp*:
- Add dependencies ImGui, ImPlot, & MinHook as Git submodules.

### Fixed

### Changed

- Update instructions in *README.md*.
- Change the recommended include path for ImGui.
- Move *Source/FmGui.hpp* to *Include/FmGui.hpp*.
- *FmGui.cpp*:
- Move *Include/FmGui.hpp* to *Source/FmGui.hpp*.
- Add image showing preprocessor config for ImPlot usage.
- Change image format to JPEG.
- *FmGui.cpp*
- Remove functions ** and **.
- Update *Examples/Fm.cpp* to reflect changes to library interface.
- Removed CMake project file and *Source/DllMain.cpp*
- Will possibly add *.cmake* file for use with the `include` CMake command that declares FmGui as an interface library type.

### Known Issues

- Crashes on second mission quit when ImGui IniFileName is not null pointer.
- Message fetching facilities of FmGui not implemented.

### Additional Notes

### Additional Notes:
- Please ignore the CMakeList.txt and DllMain.cpp for now. I am attempting to
implement the project as a static library.
63 changes: 0 additions & 63 deletions CMakeLists.txt

This file was deleted.

Loading