Skip to content

Commit 2f11710

Browse files
committed
Updated the changelog and version number for 2.5.1
1 parent 9fba1df commit 2f11710

3 files changed

Lines changed: 50 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
5050
# setup version numbers
5151
set(VERSION_MAJOR 2)
5252
set(VERSION_MINOR 5)
53-
set(VERSION_PATCH 0)
53+
set(VERSION_PATCH 1)
5454

5555
# add an option for choosing the build type (shared or static)
5656
if(NOT (SFML_OS_IOS OR SFML_OS_ANDROID))

changelog.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,53 @@
11
# Changelog
22

3+
## SFML 2.5.1
4+
5+
Also available on the website: https://www.sfml-dev.org/changelog.php#sfml-2.5.1
6+
7+
### General
8+
9+
* Various CMake fixes (#1414, #1416, #1436, #1439, #1467, #1470)
10+
* Fixed the installation of pkg-config files (#1466)
11+
* Fixed two conversion warnings (#1454)
12+
* [Android] Fixes all symbols in sfml-main are hidden (#1457, #1460)
13+
* [Android] Fixed some `#define` flag problem (#1458)
14+
* [Android] Fix deadlock in main cleanup (#1265)
15+
* [iOS] Modernized toolchain file (#1411)
16+
* [iOS] Check that `<SFML/Main.hpp>` is used (#1412)
17+
* [macOS] Add `-ObjC` flag to fix static linking on macOS (#1485)
18+
19+
### Window
20+
21+
**Bugfixes**
22+
23+
* [iOS] Use default supported rotations when none are specified (#1417)
24+
* [iOS] Fixed autocomplete window overlaps keyboard (#1473, #1482)
25+
* [Linux] Fixed dual monitor issue (#1226, #1238)
26+
* [Linux] Fixed issue where fullscreen window didn't go over task bars on top and left on in Ubuntu (#1224)
27+
* [Linux] Fixed the Unix clipboard implementation causing an abort due to internal data races in Xlib (#1437)
28+
* [macOS] Added additional system cursors (#1401, #1413, #1425)
29+
* [Windows] Fixed swapped colors for custom cursors (#1464, #1465, #1491)
30+
31+
### Graphics
32+
33+
**Bugfixes**
34+
35+
* Fixed a bug in which a `sf::RenderTexture` would not be re-activated after being re-created (#1438)
36+
* Fixed `sf::RenderTextureImplFBO`'s destructor incorrectly triggering deletion of other `sf::RenderTextureImplFBO`'s active FBOs (#1440)
37+
* Fix `sf::RenderWindow::setActive` incorrectly trying to unbind an FBO during deactivation (#1442)
38+
* Fixed `sf::RenderTexture::display()` dereferencing a NULL pointer when being called before `sf::RenderTexture::create()` (#1446)
39+
* Fixed bug in `sf::Text` when applying an outline color/thickness (#1176)
40+
* Squash duplicated `sf::Font` glyphs to single chars (#1461)
41+
* Fixed two issues with glyph sub-pixel positioning (#1452)
42+
* Reduced context locking & unlocking while creating textures (#1459)
43+
* Fixed the error message when the wrong bitmap font size is selected (#1456, #1474, #1492)
44+
45+
### Audio
46+
47+
**Bugfixes**
48+
49+
* Fixed performance issue with reading WAV files (#1450)
50+
351
## SFML 2.5.0
452

553
Also available on the website: https://www.sfml-dev.org/changelog.php#sfml-2.5.0

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 5
34-
#define SFML_VERSION_PATCH 0
34+
#define SFML_VERSION_PATCH 1
3535

3636

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

0 commit comments

Comments
 (0)