From eb208ac4ad302d9e43125b8740d643871e3db504 Mon Sep 17 00:00:00 2001 From: Bruno Van de Velde Date: Sat, 23 Feb 2019 10:40:28 +0100 Subject: [PATCH] Updated version to 0.8.4 --- CMakeLists.txt | 2 +- changelog.txt | 4 ++-- include/TGUI/Config.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index af3574d44..ccdfd7445 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ if(NOT SFML_DIR AND NOT CMAKE_MODULE_PATH) endif() # Project name and version -project(TGUI VERSION 0.8.3) +project(TGUI VERSION 0.8.4) # Include the configuration file include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake) diff --git a/changelog.txt b/changelog.txt index ff52b48ed..6d441923d 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,5 @@ -TGUI 0.8.4 (TBD) ------------------ +TGUI 0.8.4 (23 February 2019) +------------------------------ - Added Changed signal to CheckBox and RadioButton (to more easily combine Checked and Unchecked) - Added EscapeKeyPressed signal to ChildWindow diff --git a/include/TGUI/Config.hpp b/include/TGUI/Config.hpp index fce751061..b63671d05 100644 --- a/include/TGUI/Config.hpp +++ b/include/TGUI/Config.hpp @@ -55,7 +55,7 @@ // Version of the library #define TGUI_VERSION_MAJOR 0 #define TGUI_VERSION_MINOR 8 -#define TGUI_VERSION_PATCH 3 +#define TGUI_VERSION_PATCH 4 // The signal system detects whether it can provide unbound parameters by checking the arguments of the function at runtime. // This comparion is made by checking the typeid of the parameters with the typeid of the value which the widget can transmit.