Skip to content

Commit 965249c

Browse files
committed
RELEASE 0.10.0
* Add possibility for any BoxElement (i.e. button or text element) to take the space of multiple columns (column_span argument) * Add function to configure the default text colors of buttons * Improve margin of InfoBox title * Fix rendering of TextElement in row with other elements
1 parent 4a11d3a commit 965249c

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.txt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1+
-- VERSION 0.10.0 --
2+
3+
* Add possibility for any BoxElement (i.e. button or text element) to take the space of multiple columns (column_span argument)
4+
* Add function to configure the default text colors of buttons
5+
* Improve margin of InfoBox title
6+
* Fix rendering of TextElement in row with other elements
7+
18
-- VERSION 0.9.1 --
29

310
* Fix configuration for default title of close buttons not being applied
411

512
-- VERSION 0.9.0 --
613

714
* Add method to check if a given position is inside or outside a InfoBox
8-
* Add method to configure the default title of close buttons
15+
* Add function to configure the default title of close buttons
916

1017
-- VERSION 0.8.0 --
1118

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="pygame-popup",
8-
version="0.9.1",
8+
version="0.10.0",
99
author="Grimmys",
1010
author_email="[email protected]",
1111
description="A popup manager for pygame",
@@ -24,5 +24,5 @@
2424
packages=setuptools.find_packages(where="src"),
2525
package_data={"": ["images/*.png"]},
2626
python_requires=">=3.7",
27-
install_requires=["pygame>=2.0.0"],
27+
install_requires=["pygame-ce>=2.0.0"],
2828
)

0 commit comments

Comments
 (0)