Skip to content

Commit 43aae2d

Browse files
committed
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.
1 parent e493d41 commit 43aae2d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1)
22

33
project(imgui_sfml
44
LANGUAGES CXX
5-
VERSION 2.1
5+
VERSION 2.2
66
)
77

88
# In CMake 3.12+ this policy will automatically take the ImGui_ROOT and SFML_ROOT environment variables
@@ -57,7 +57,7 @@ if(NOT IMGUI_DIR)
5757
endif()
5858

5959
# This uses FindImGui.cmake provided in ImGui-SFML repo for now
60-
find_package(ImGui 1.68 REQUIRED)
60+
find_package(ImGui 1.80 REQUIRED)
6161

6262
# these headers will be installed alongside ImGui-SFML
6363
set(IMGUI_PUBLIC_HEADERS

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ImGui-SFML v2.1
1+
ImGui-SFML v2.2
22
=======
33
[![build Actions Status](https://github.com/eliasdaler/imgui-sfml/workflows/build/badge.svg)](https://github.com/eliasdaler/imgui-sfml/actions)
44

@@ -12,7 +12,7 @@ Dependencies
1212
-----
1313

1414
* [SFML](https://github.com/SFML/SFML) >= 2.5.0
15-
* [Dear ImGui](https://github.com/ocornut/imgui) >= 1.68
15+
* [Dear ImGui](https://github.com/ocornut/imgui) >= 1.80
1616

1717
Contributing
1818
-----

0 commit comments

Comments
 (0)