Skip to content

Commit 723c0da

Browse files
committed
version bump
1 parent f23bac3 commit 723c0da

File tree

4 files changed

+44
-39
lines changed

4 files changed

+44
-39
lines changed

.efrocachemap

Lines changed: 35 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 1.7.50 (build 22525, api 9, 2025-09-04)
2+
- Cleaned up cursor handling on Mac build. Fixes an issue where the cursor could
3+
sometimes revert to the system cursor for a few seconds after moving the
4+
cursor to the top of a fullscreen window.
5+
16
### 1.7.49 (build 22524, api 9, 2025-09-04)
27
- Fixes an issue where `bascenev1.reload_hooks()` and `bauiv1.reload_hooks()`
38
were actually calling `_babase.reload_hooks()` (oops my bad).

src/assets/ba_data/python/baenv.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656

5757
# Build number and version of the ballistica binary we expect to be
5858
# using.
59-
TARGET_BALLISTICA_BUILD = 22524
60-
TARGET_BALLISTICA_VERSION = '1.7.49'
59+
TARGET_BALLISTICA_BUILD = 22525
60+
TARGET_BALLISTICA_VERSION = '1.7.50'
6161

6262

6363
@dataclass

src/ballistica/shared/ballistica.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ auto main(int argc, char** argv) -> int {
4141
namespace ballistica {
4242

4343
// These are set automatically via script; don't modify them here.
44-
const int kEngineBuildNumber = 22524;
45-
const char* kEngineVersion = "1.7.49";
44+
const int kEngineBuildNumber = 22525;
45+
const char* kEngineVersion = "1.7.50";
4646
const int kEngineApiVersion = 9;
4747

4848
#if BA_MONOLITHIC_BUILD

0 commit comments

Comments
 (0)