diff --git a/CMakeLists.txt b/CMakeLists.txt index acd0a73e..1a888611 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ else() cmake_minimum_required(VERSION 3.10) endif() -project(hello-imgui LANGUAGES C CXX VERSION "1.5.0") # 1.5.0 WIP +project(hello-imgui LANGUAGES C CXX VERSION "1.5.0") set(CMAKE_CXX_STANDARD 17) if (IOS) diff --git a/Changelog.md b/Changelog.md index c03c8914..f5a464da 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,7 +1,13 @@ Version numbers are synced between hello_imgui and imgui_bundle. -# v1.5.0-rc1 - +# v1.5.0 +* Improved rendering on Windows (via antialiasing) +* Add IniFolderType.AbsolutePath +* Polish themes +* Add callback PostRenderDockableWindows +* Added optional [hello_imgui.ini](https://github.com/pthom/hello_imgui/blob/master/hello_imgui_example.ini) file, + as a way to do advanced configuration for Dpi and OpenGL rendering options +* Add PushTweakedTheme / PopTweakedTheme (different ImGui windows can use a different theme. See demo docking) * Add DpiAwareParams: see [doc](https://pthom.github.io/hello_imgui/book/doc_params.html#dpi-aware-params) * Add HelloImGui::ImageAndSizeFromAsset see [doc](https://pthom.github.io/hello_imgui/book/doc_api.html#display-images-from-assets) * callbacks.LoadAdditionalFonts can be modified and reused during execution