Move "ImGui's files" from right in the middle, to a dear-imgui/
git subtree
#12
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello,
In this pull request, I have moved the Dear ImGui's files form "in the middle of all AllenDang's files" to a new completely independent and self-contained
dear-imgui/
directory.(this is a step in addition to the split you already done this year, by splitting this repo from https://github.com/AllenDang/giu)
This new
dear-imgui/
directory is agit subtree
directory, which means that :dear-imgui/
subdirectory (git subtree pull
)Hint : I needed that because, indeed, I have some bug in "Dear ImGui" base code (ocornut/imgui#3795) that:
imgui.cpp
imgui.cpp
code (official "Dear ImGui") in https://github.com/AllenDang/imgui-goimgui.cpp
, to Dear ImGui (git subtree push)dear-imgui/
folder to my ownocornut/imgui
's fork, and create a pull request from there)So I forked your
github.com/AllenDang/imgui-go
repo, and created afolays.imgui-v1.85
branch.Here are the commands that I did to create it :
I also
git add
a a new file,/git_pull_dear-imgui.sh
which you can use to "pull" new Dear ImGui version from upstream.Here is what I could do if I wanted to update to Dear ImGui v1.86 (released... yesterday?)
Also, I think that you are substantially derived from inkyblackness/imgui-go, but I could not figure your thought process.
I'm somewhat curious :
Hope you understand that the purpose of this change is to ease :
Regards,