Skip to content

Commit

Permalink
Updated version to 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
texus committed Nov 1, 2021
1 parent 3b85947 commit 114d0a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Macros.cmake)
tgui_set_option(CMAKE_BUILD_TYPE Release STRING "Choose the type of build (Debug or Release)")

# Project name and version
project(TGUI VERSION 0.9.1)
project(TGUI VERSION 0.9.2)

# TGUI uses the paths from the cmake GNUInstallDirs module as defaults (https://cmake.org/cmake/help/v3.0/module/GNUInstallDirs.html)
include(GNUInstallDirs)
Expand Down
7 changes: 4 additions & 3 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
TGUI 0.9.2 (TBD)
-----------------
TGUI 0.9.2 (1 November 2021)
-----------------------------

- Arrow keys can now be used to navigate TreeView
- Control/shift now affect using arrow keys in multi-select ListView
- Added Texture::setDefaultSmooth to choose default interpolation setting
- String::split now takes an optional boolean to trim the returned values
- Kerning calculation now takes bold text style into account (only if SFML >= 2.6)
- Added setWidgetIndex and getWidgetIndex functions to container
- Added String::contains function
- saveWidgetsToFile now makes paths relative to the form path
- Tool tips will no longer be displayed outside the window when close to the side
- Exception is now thrown when loading a font fails
Expand All @@ -19,7 +20,6 @@ TGUI 0.9.2 (TBD)
- Clipping in SDL backend was incorrect when view and viewport were changed
- Opacity of color wheel wasn't set when making ColorPicker transparent


TGUI 0.9.1 (12 February 2021)
------------------------------

Expand All @@ -31,6 +31,7 @@ TGUI 0.9.1 (12 February 2021)
- Horizontal scrollbar can now depend on item width in ListView ([PR #147](https://github.com/texus/TGUI/pull/147))
- Added support to copy selected ListView items to clipboard ([PR #148](https://github.com/texus/TGUI/pull/148))
- Add setTextSize for SubwidgetContainer ([PR #149](https://github.com/texus/TGUI/pull/149))
- Added SDL/OpenGL backend as alternative for default SFML backend
- Rewrote signal system again, `b->connect("Pressed",...)` is now `b->onPress(...)`
- Added new FileDialog widget
- Added new ToggleButton widget
Expand Down

0 comments on commit 114d0a0

Please sign in to comment.