From 9cc8c57a4565551087be0d9aeb3ae55490aa1207 Mon Sep 17 00:00:00 2001 From: Elias Daler Date: Fri, 12 Nov 2021 14:30:10 +0300 Subject: [PATCH] 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) --- CMakeLists.txt | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 153ef3c..e200f66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.1) project(imgui_sfml LANGUAGES CXX - VERSION 2.3 + VERSION 2.4 ) # In CMake 3.12+ this policy will automatically take the ImGui_ROOT and SFML_ROOT environment variables diff --git a/README.md b/README.md index f170d1d..3cca954 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -ImGui-SFML v2.3 +ImGui-SFML v2.4 ======= [![build Actions Status](https://github.com/eliasdaler/imgui-sfml/workflows/build/badge.svg)](https://github.com/eliasdaler/imgui-sfml/actions)