Incremented SFML version number and added changes to the changelog.

This commit is contained in:
Lukas Dürrenberger 2016-10-21 17:07:22 +02:00
parent 2207af41e4
commit 67ef694443
3 changed files with 51 additions and 4 deletions

View File

@ -45,7 +45,7 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
# setup version numbers
set(VERSION_MAJOR 2)
set(VERSION_MINOR 4)
set(VERSION_PATCH 0)
set(VERSION_PATCH 1)
# add the SFML header path
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)

View File

@ -1,3 +1,51 @@
SFML 2.4.1
==========
Also available on the website: http://www.sfml-dev.org/changelog.php#sfml-2.4.1
General
=======
* [kFreeBSD] Define SFML_OS_FREEBSD when compiling for kFreeBSD (#1129)
* [Window] Added some simple messaging when trying to build under Cygwin (#1153)
Window
======
Bugfixes
--------
* Fixed stack overflow on GlContext creation with multiple threads (#989, #1002)
* Adjusted mouse cursor grab documentation (#1133)
* [iOS] Fixed orientation change not rescaling window size properly (#1049, #1050)
* [Linux] Fixed fullscreen issue (#921, #1138)
* [Linux] Switched from XCB back to Xlib for windowing (#1138)
* [Linux] Fixed window icon not showing up on some distros (#1087, #1088)
* [Linux] Fixed an issue where GNOME flags window unresponsive (#1089, #1138)
* [Linux] Fixed leak of XVisualInfo objects during GlxContext creation (#1135)
* [Linux] Fixed possible hang when setting visibility if external window sources (#1136)
* [OS X] Fixed inconsistency between doc and impl on OS X for the grab feature (#1133, #1148, #1150)
* [Windows] Fixed context memory leaks (#1143, #1002)
Graphics
========
Bugfixes
--------
* Adjusted uniform error message (#1131)
* Clarify documentation on Rect::contains function bounds (#1151)
Network
=======
Bugfixes
--------
* Fixed a typo in comment for void unbind() (#1121)
SFML 2.4.0
==========
@ -115,8 +163,6 @@ Bugfixes
SFML 2.3.2
==========
@ -152,6 +198,7 @@ Bugfixes
* Secure function against random data return (#935, #942)
SFML 2.3.1
==========

View File

@ -31,7 +31,7 @@
////////////////////////////////////////////////////////////
#define SFML_VERSION_MAJOR 2
#define SFML_VERSION_MINOR 4
#define SFML_VERSION_PATCH 0
#define SFML_VERSION_PATCH 1
////////////////////////////////////////////////////////////