Skip to content

Commit b3e4456

Browse files
committed
Incremented SFML version number and added changes to the changelog.
1 parent 303d079 commit b3e4456

File tree

3 files changed

+51
-4
lines changed

3 files changed

+51
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
4545
# setup version numbers
4646
set(VERSION_MAJOR 2)
4747
set(VERSION_MINOR 4)
48-
set(VERSION_PATCH 0)
48+
set(VERSION_PATCH 1)
4949

5050
# add the SFML header path
5151
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)

changelog.txt

Lines changed: 49 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
SFML 2.4.1
2+
==========
3+
4+
Also available on the website: http://www.sfml-dev.org/changelog.php#sfml-2.4.1
5+
6+
General
7+
=======
8+
9+
* [kFreeBSD] Define SFML_OS_FREEBSD when compiling for kFreeBSD (#1129)
10+
* [Window] Added some simple messaging when trying to build under Cygwin (#1153)
11+
12+
13+
Window
14+
======
15+
16+
Bugfixes
17+
--------
18+
* Fixed stack overflow on GlContext creation with multiple threads (#989, #1002)
19+
* Adjusted mouse cursor grab documentation (#1133)
20+
* [iOS] Fixed orientation change not rescaling window size properly (#1049, #1050)
21+
* [Linux] Fixed fullscreen issue (#921, #1138)
22+
* [Linux] Switched from XCB back to Xlib for windowing (#1138)
23+
* [Linux] Fixed window icon not showing up on some distros (#1087, #1088)
24+
* [Linux] Fixed an issue where GNOME flags window unresponsive (#1089, #1138)
25+
* [Linux] Fixed leak of XVisualInfo objects during GlxContext creation (#1135)
26+
* [Linux] Fixed possible hang when setting visibility if external window sources (#1136)
27+
* [OS X] Fixed inconsistency between doc and impl on OS X for the grab feature (#1133, #1148, #1150)
28+
* [Windows] Fixed context memory leaks (#1143, #1002)
29+
30+
31+
Graphics
32+
========
33+
34+
Bugfixes
35+
--------
36+
* Adjusted uniform error message (#1131)
37+
* Clarify documentation on Rect::contains function bounds (#1151)
38+
39+
40+
Network
41+
=======
42+
43+
Bugfixes
44+
--------
45+
* Fixed a typo in comment for void unbind() (#1121)
46+
47+
48+
149
SFML 2.4.0
250
==========
351

@@ -115,8 +163,6 @@ Bugfixes
115163

116164

117165

118-
119-
120166
SFML 2.3.2
121167
==========
122168

@@ -152,6 +198,7 @@ Bugfixes
152198
* Secure function against random data return (#935, #942)
153199

154200

201+
155202
SFML 2.3.1
156203
==========
157204

include/SFML/Config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
////////////////////////////////////////////////////////////
3232
#define SFML_VERSION_MAJOR 2
3333
#define SFML_VERSION_MINOR 4
34-
#define SFML_VERSION_PATCH 0
34+
#define SFML_VERSION_PATCH 1
3535

3636

3737
////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)