[go: up one dir, main page]

Skip to content

Tags: SFML/imgui-sfml

Tags

v2.6

Toggle v2.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
ImGui-SFML 2.6 (#252)

v2.5

Toggle v2.5's commit message
ImGui-SFML 2.5

Small release to fix broken vcpkg package (see microsoft/vcpkg#21530)
* Remove type alias for ImTextureID (#186) (thanks, @JackBoosY)

v2.4

Toggle v2.4's commit message
ImGui-SFML 2.4

* Don't update io.KeysDown for keys which Dear ImGui doesn't care about
  - fixes some crashes when pressing keys which Dear ImGui doesn't process
* Multiple window/Dear ImGui context support (thanks, @emrsmsrli)
* Support #define ImDrawIdx unsigned int in renderer via imconfig.h (thanks, @Doy-lee)
* Fix android delete/backspace keycodes (thanks, @Alia5)

v2.3

Toggle v2.3's commit message
ImGui-SFML 2.3

* Fix 'bgColor' not being passed to 'ImGui::ImageButton' (thanks, @SuperV1234)
* Fix KeysDown not being reset to 'false' when losing focus
* Sync OpenGL rendering code with Dear ImGui's OpenGL2 backend implementation

v2.2

Toggle v2.2's commit message
ImGui-SFML v2.2

This release is an accumulation small things which are important to release:
* ImGui >= 1.80 is now required. ImGui added imgui_tables.cpp and some
of the functions were deprecated. It's important to stay up-to-date
* Fixed Image/ImageButton and sf::RenderTexture problems (texture was
shown upside down)
* Removed an overload for Image/ImageButton which took sf::Texture and
sf::IntRect textureRect. You should use sf::Sprite now.
* Added sf::Cursor::Hand (thanks, @DarkContact)
* Restored C++03 support
* Fix MSVC warnings (thanks, @andrew-gresyk, @plutphil)

Also I'd like to thank @pinam45 for making CI for ImGui-SFML. Also
thanks to @sabidib, @dubgron and @ComicSansMS for improving/fixing
builds and CMake scripts.

v2.1

Toggle v2.1's commit message
ImGui-SFML v2.1

* Can now use ImGui-SFML without sf::RenderTarget
* Add Conanfile for packaging (thanks, @barsoosayque)
* Fix clipboard for unicode strings (thanks, @Lomadriel)
* Add horizonal wheel support (thanks, @Melix19)
* Set SFML_STATIC_LIBRARIES to ON when BUILD_SHARED_LIBS is OFF (thanks, @saliainfo)

v2.0.2

Toggle v2.0.2's commit message
Use MouseWheelScrollEvent instead of MouseWheelMoveEvent

Fixes #83

v2.0.1

Toggle v2.0.1's commit message
Set io.BackendPlatformName in Init

v2.0

Toggle v2.0's commit message
Merge branch 'develop'

ImGui-SFML v.2.0
* Better CMake support
* Compiler warning fixes
* Can now compile as shared library

v1.0

Toggle v1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #43 from ekunuke/master

Fix DrawRectFilled calling wrong draw_list function.