Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
srcs-full-v1.92.3.tar.gz | 2025-09-17 | 40.0 MB | |
README.md | 2025-09-17 | 1.8 kB | |
v1.92.3 source code.tar.gz | 2025-09-17 | 13.9 MB | |
v1.92.3 source code.zip | 2025-09-17 | 14.3 MB | |
Totals: 4 Items | 68.1 MB | 0 |
Updates to libraries
ImGui:
- Updates imgui and imgui_test_engine to v1.92.3
hello_imgui:
- update to v1.92.3
- add SetLoadAssetFileDataFunction (and python binding): a way to customize asset loading
imgui_md:
- fix line wrapping (thanks to @bgribble). cf [#366]
imgui-knobs, ImGuizmo, imgui_toggle:
- update to latest version
ImGuiColorTextEdit:
- update to latest version (from santaclose fork)
Python bindings:
ImGui bindings:
-
ImGui Enums now use 'enum.IntFlag' (This impacts only the typing checks, not the runtime behavior) This means that you may replace code like:
:::python imgui.WindowFlags_.no_collapse.value | imgui.WindowFlags_.no_decoration.value with:
:::python imgui.WindowFlags_.no_collapse | imgui.WindowFlags_.no_decoration * imgui.push_font (accepts optional font) * Improve typing for ImVec2 and ImVec4 (use different protocols. Thanks to @joegnis)
Pure Python Backends
Pure Python Backends
- Fix pygame backend (thanks Dom Ormsby)
- Fix issue when pasting with glfw backend (thanks to @sunsigil)
Other
- ImGuizmo:handle deltaMatrix / document Manipulate API
What's Changed
- Update PygameRenderer by @d-orm in https://github.com/pthom/imgui_bundle/pull/372
- Uses different protocols for Python binding class ImVec2 and ImVec4 by @joegnis in https://github.com/pthom/imgui_bundle/pull/374
New Contributors
- @d-orm made their first contribution in https://github.com/pthom/imgui_bundle/pull/372
- @joegnis made their first contribution in https://github.com/pthom/imgui_bundle/pull/374
- @sunsigil made their first contribution in https://github.com/pthom/imgui_bundle/pull/388
Full Changelog: https://github.com/pthom/imgui_bundle/compare/v1.92.0...v1.92.3