Skip to content

Commit e55fa7b

Browse files
authored
Update changelog (#2781)
1 parent 937c572 commit e55fa7b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,21 @@ Arcade [PyPi Release History](https://pypi.org/project/arcade/#history) page.
55

66
## Unreleased
77

8+
- Support for Python 3.14
89
- Fixes a bug with the `check_for_collision_with_lists` function. This function is intended to mimic the functionality of
910
`check_for_collision_with_list` but allow passing multiple lists and looping the same behavior. The `lists` function however
1011
handled the collision method differently. Which resulted in only spatial hash being used if it was available, or GPU collision.
1112
It would never fallback to the pure CPU brute force approach, which is the best option for spritelists which don't have spatial hash
1213
and less than 1,500 sprites. Certain games may see a substantial performance improvement from this change. See [2762](https://github.com/pythonarcade/arcade/pull/2762)
14+
- Added `center_x` and `center_y` arguments to `arcade.SpriteCircle`. See [2766](https://github.com/pythonarcade/arcade/pull/2766)
15+
- Added a `rect` property to `arcade.Text` objects which will return an `arcade.Rect` based on the `left`, `right`, `bottom`, and `top` values of the Text object. See [2759](https://github.com/pythonarcade/arcade/pull/2759)
16+
17+
- Camera
18+
- Fixes the position flag in `Camera2D.match_window` to so (0, 0) as the bottom left, instead of matching the center. See [2646](https://github.com/pythonarcade/arcade/pull/2646)
1319

1420
- PyInstaller
1521
- Fixed an issue where imports for backends for the `arcade.gl` package could not be discovered by PyInstaller.
16-
Since 3.3.0 users have needed to add these hidden imports via the pyinstaller CLI in order for Arcade to work.
22+
Since 3.3.0 users have needed to add these hidden imports via the pyinstaller CLI in order for Arcade to work. See [2764](https://github.com/pythonarcade/arcade/pull/2764)
1723

1824
- GUI
1925
- Fix a bug, where the caret of UIInputText was misplaced after resizing the widget

0 commit comments

Comments
 (0)