From 66b51940bd71bfe75df74747773a292790be200f Mon Sep 17 00:00:00 2001 From: omar Date: Thu, 30 Aug 2018 15:19:24 +0200 Subject: [PATCH] Refactor: Moved README, ChangeLog, TODO files to docs/ folder + update Changelog. (#2036) --- CHANGELOG.txt => docs/CHANGELOG.txt | 15 +++++++++++++++ README.md => docs/README.md | 0 TODO.txt => docs/TODO.txt | 0 3 files changed, 15 insertions(+) rename CHANGELOG.txt => docs/CHANGELOG.txt (98%) rename README.md => docs/README.md (100%) rename TODO.txt => docs/TODO.txt (100%) diff --git a/CHANGELOG.txt b/docs/CHANGELOG.txt similarity index 98% rename from CHANGELOG.txt rename to docs/CHANGELOG.txt index 783454d3..35472c3d 100644 --- a/CHANGELOG.txt +++ b/docs/CHANGELOG.txt @@ -33,6 +33,21 @@ HOW TO UPDATE? VERSION 1.64 (in progress) ----------------------------------------------------------------------- +Changes: + +- Moved Readme, Changelog and Todo files to the docs/ folder. + If you are updating dear imgui by copying files, take the chance to delete the old files. +- Added imgui_widgets.cpp file, extracted and moved widgets code out of imgui.cpp into imgui_widgets.cpp. + Re-ordered some of the code remaining in imgui.cpp in cleared chunks. + NONE OF THE FUNCTIONS HAVE CHANGED. THE CODE IS SEMANTICALLY 100% IDENTICAL, BUT ALL FUNCTIONS WERE MOVED. + Because of this, any local modifications to imgui.cpp will likely conflict when you update. + If you have any modifications to imgui.cpp, it is suggested that you first update to 1.63, then + isolate your patches. You can peak at imgui_widgets.cpp from 1.64 to get a sense of what is included in it, + then separate your changes into several patches that can more easily be applied to 1.64 on a per-file basis. +- As a reminder, if you have any change to imgui.cpp it is a good habit to discuss them on the github + so a solution applicable on the Master branch can be found. If your company has changes that you cannot + disclose you may also contact me privately. + ----------------------------------------------------------------------- VERSION 1.63 (Released 2018-08-29) diff --git a/README.md b/docs/README.md similarity index 100% rename from README.md rename to docs/README.md diff --git a/TODO.txt b/docs/TODO.txt similarity index 100% rename from TODO.txt rename to docs/TODO.txt