Skip to content

Commit

Permalink
ImGui-SFML v2.1
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
eliasdaler committed Aug 24, 2019
1 parent 85f5d9a commit 488c321
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1)

project(imgui_sfml
LANGUAGES CXX
VERSION 2.0
VERSION 2.1
)

# In CMake 3.13+ this policy enables you to define normal variables with option names as if you defined
Expand Down Expand Up @@ -104,7 +104,7 @@ if(NOT IMGUI_SFML_USE_DEFAULT_CONFIG)
PUBLIC
$<BUILD_INTERFACE:${IMGUI_SFML_CONFIG_DIR}>
)

if (IMGUI_SFML_CONFIG_INSTALL_DIR)
target_include_directories(ImGui-SFML
PUBLIC
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ImGui + SFML v2.0
ImGui + SFML v2.1
=======

Library which allows you to use [ImGui](https://github.com/ocornut/imgui) with [SFML](https://github.com/SFML/SFML)
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class ImguiSfmlConan(ConanFile):
"""

name = 'imgui-sfml'
version = '2.0.2'
version = '2.1'
description = 'ImGui binding for use with SFML'
topics = ('conan', 'sfml', 'gui', 'imgui')
url = 'https://github.com/eliasdaler/imgui-sfml'
Expand Down

0 comments on commit 488c321

Please sign in to comment.