This repository was archived by the owner on Oct 9, 2021. It is now read-only.
File tree 4 files changed +18
-2
lines changed
4 files changed +18
-2
lines changed Original file line number Diff line number Diff line change
1
+ 0.2.1 (12/08/2012):
2
+
3
+ - RenderWindow.display() doesn't release the GIL anymore, as it would cause
4
+ segmentation faults when integrating with PyQt.
5
+ - Fixed crashes when comparing Time objects with None.
6
+ - Removed the default font, since it was removed in C++ SFML. If you still
7
+ encounter crashes at the end of the program on Windows, this should fix it.
8
+
1
9
0.2 (07/20/2012):
2
10
3
11
- Event.BACK has been renamed to Event.BACK_SPACE, to fit with the C++ SFML
Original file line number Diff line number Diff line change @@ -34,6 +34,14 @@ Changelog
34
34
.. currentmodule :: sfml
35
35
36
36
37
+ 0.2.1 (12/08/2012):
38
+
39
+ - :meth: `RenderWindow.display() ` doesn't release the GIL anymore, as it would
40
+ cause segmentation faults when integrating with PyQt.
41
+ - Fixed crashes when comparing :class: `Time ` objects with ``None ``.
42
+ - Removed the default font, since it was removed in C++ SFML. If you still
43
+ encounter crashes at the end of the program on Windows, this should fix it.
44
+
37
45
0.2 (07/20/2012):
38
46
39
47
- ``Keyboard.BACK `` has been renamed to :attr: `Keyboard.BACK_SPACE `, to fit with
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def src(path):
71
71
72
72
kwargs = dict (name = 'pySFML' ,
73
73
ext_modules = ext_modules ,
74
- version = '0.2' ,
74
+ version = '0.2.1 ' ,
75
75
description = 'A Python binding for SFML 2' ,
76
76
long_description = long_description ,
77
77
author = u'Bastien Léonard' ,
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ def src(path):
71
71
72
72
kwargs = dict (name = 'pySFML' ,
73
73
ext_modules = ext_modules ,
74
- version = '0.2' ,
74
+ version = '0.2.1 ' ,
75
75
description = 'A Python binding for SFML 2' ,
76
76
long_description = long_description ,
77
77
author = 'Bastien Léonard' ,
You can’t perform that action at this time.
0 commit comments