-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,61 @@ | ||
Version numbers are synced between hello_imgui and imgui_bundle. | ||
|
||
# v1.3.0 | ||
|
||
## New Features | ||
|
||
* Added EdgeToolbars: see [definition](https://github.com/pthom/hello_imgui/blob/3a279ce7459b04a4c2e7460b844cbf354833964e/src/hello_imgui/runner_callbacks.h#L72-L102), [callbacks](https://github.com/pthom/hello_imgui/blob/3a279ce7459b04a4c2e7460b844cbf354833964e/src/hello_imgui/runner_callbacks.h#L140-L147), [example usage](https://github.com/pthom/hello_imgui/blob/3a279ce7459b04a4c2e7460b844cbf354833964e/src/hello_imgui_demos/hello_imgui_demodocking/hello_imgui_demodocking.main.cpp#L694-L714), and [demo](https://traineq.org/ImGuiBundle/emscripten/bin/demo_docking.html) | ||
* Callbacks: add [EnqueuePostInit, EnqueueBeforeExit, PostInit_AddPlatformBackendCallbacks](https://pthom.github.io/hello_imgui/book/doc_params.html#runnercallbacks) | ||
* Add [renderer_backend_options](https://pthom.github.io/hello_imgui/book/doc_params.html#renderer-backend-options) | ||
* Add support for Extended Dynamic Range (EDR) on macOS : see [PR](https://github.com/pthom/hello_imgui/pull/89). Added [demo / EDR](https://github.com/pthom/hello_imgui/tree/master/src/hello_imgui_demos/hello_edr) - Only works with Metal | ||
* Test Engine: can re-call params.callbacks.RegisterTests | ||
* rememberEnableIdling default=false (true is too surprising) | ||
* emscripten: Use webgl2 / GLES3 | ||
|
||
# Other, between v1.0.0 and v1.3.0 | ||
|
||
* Added nice [documentation pages](https://pthom.github.io/hello_imgui) | ||
* Uses [Freetype for font rendering](https://github.com/pthom/hello_imgui/blob/549c205dd3ca98f18fcf541a2ebbfc5abdd10410/CMakeLists.txt#L96-L106) | ||
* Improved [Font Loading utility](https://github.com/pthom/hello_imgui/blob/549c205dd3ca98f18fcf541a2ebbfc5abdd10410/src/hello_imgui/hello_imgui_font.h#L13-L62) | ||
* Added support for Colored font and Emoji fonts ([Demo](https://traineq.org/ImGuiBundle/emscripten/bin/demo_docking.html)) | ||
* Can [fully customize the menu bar](https://pthom.github.io/hello_imgui/book/doc_api.html#customize-hello-imgui-menus) | ||
* Added support for macOS application bundles | ||
* Added option to specify where settings are saved: `RunnerParams.iniFolderType` can be set to: `CurrentFolder`, `AppUserConfigFolder`, `DocumentsFolder`, `HomeFolder`, `TempFolder`, `AppExecutableFolder`. | ||
* Support for Application Icon: the file `assets/app_settings/icon.png` will be used to generate the window icon (C++, Python), and app icon (C++ only) for any platform. See assets structure below: | ||
``` | ||
assets/ | ||
├── world.png # A custom asset | ||
├── app_settings/ # Application settings | ||
│ ├── icon.png # This will be the app icon, it should be square | ||
│ │ # and at least 512x512. It will be converted | ||
│ │ # to the right format, for each platform. | ||
│ ├── apple/ | ||
│ │ └── Info.plist # macOS and iOS app settings | ||
│ │ # (or Info.ios.plist + Info.macos.plist) | ||
├── fonts/ | ||
│ ├── DroidSans.ttf # Default fonts | ||
│ └── fontawesome-webfont.ttf # used by HelloImGui | ||
│ ├── Roboto | ||
│ │ ├── Roboto-Bold.ttf # Font used by Markdown | ||
│ │ ├── Roboto-BoldItalic.ttf | ||
│ │ ├── Roboto-Regular.ttf | ||
│ │ └── Roboto-RegularItalic.ttf | ||
│ ├── SourceCodePro-Regular.ttf | ||
├── images | ||
│ └── markdown_broken_image.png | ||
``` | ||
* hello_imgui_add_app and imgui_bundle.add_app can now accept ASSETS_LOCATION as a parameter e.g. `hello_imgui_add_app(my_app file1.cpp file2.cpp ASSETS_LOCATION my_assets)` | ||
|
||
|
||
# v1.0.0 | ||
|
||
* Integrated ImGui Test Engine | ||
* Layout & docking: can switch between several layout and save their settings separately | ||
* Reduce FPS when not in use to save CPU usage: added FpsIdling options | ||
* Can store custom user preferences | ||
* Greatly improved HighDpi support | ||
* Improved Theming and Themes | ||
* Added callbacks: PostInit / BeforeExit_PostCleanup / PreNewFrame | ||
* MingW compatibility (and CI) | ||
* Make it possible to run without assets/fonts | ||
* Improved emscripten multithread support |