Skip to content

Commit 488c321

Browse files
committed
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)
1 parent 85f5d9a commit 488c321

File tree

3 files changed

+4
-4
lines changed

3 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.0
5+
VERSION 2.1
66
)
77

88
# In CMake 3.13+ this policy enables you to define normal variables with option names as if you defined
@@ -104,7 +104,7 @@ if(NOT IMGUI_SFML_USE_DEFAULT_CONFIG)
104104
PUBLIC
105105
$<BUILD_INTERFACE:${IMGUI_SFML_CONFIG_DIR}>
106106
)
107-
107+
108108
if (IMGUI_SFML_CONFIG_INSTALL_DIR)
109109
target_include_directories(ImGui-SFML
110110
PUBLIC

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ImGui + SFML v2.0
1+
ImGui + SFML v2.1
22
=======
33

44
Library which allows you to use [ImGui](https://github.com/ocornut/imgui) with [SFML](https://github.com/SFML/SFML)

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ImguiSfmlConan(ConanFile):
3333
"""
3434

3535
name = 'imgui-sfml'
36-
version = '2.0.2'
36+
version = '2.1'
3737
description = 'ImGui binding for use with SFML'
3838
topics = ('conan', 'sfml', 'gui', 'imgui')
3939
url = 'https://github.com/eliasdaler/imgui-sfml'

0 commit comments

Comments
 (0)