Skip to content

Commit f23bac3

Browse files
committed
v1.7.49
1 parent 8412cd0 commit f23bac3

24 files changed

+122
-247
lines changed

.efrocachemap

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

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 1.7.49 (build 22521, api 9, 2025-09-02)
1+
### 1.7.49 (build 22524, api 9, 2025-09-04)
22
- Fixes an issue where `bascenev1.reload_hooks()` and `bauiv1.reload_hooks()`
33
were actually calling `_babase.reload_hooks()` (oops my bad).
44
- Added a `darken_behind` arg for `bauiv1.containerwidget()`. Useful for things

src/assets/.asset_manifest_public.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@
200200
"ba_data/python/bauiv1lib/account/__init__.py",
201201
"ba_data/python/bauiv1lib/account/settings.py",
202202
"ba_data/python/bauiv1lib/account/signin.py",
203-
"ba_data/python/bauiv1lib/account/unlink.py",
204203
"ba_data/python/bauiv1lib/account/v2proxy.py",
205204
"ba_data/python/bauiv1lib/account/viewer.py",
206205
"ba_data/python/bauiv1lib/achievements.py",

src/assets/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ SCRIPT_TARGETS_PY_PUBLIC = \
343343
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/__init__.py \
344344
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/settings.py \
345345
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/signin.py \
346-
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/unlink.py \
347346
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/v2proxy.py \
348347
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/viewer.py \
349348
$(BUILD_DIR)/ba_data/python/bauiv1lib/achievements.py \

src/assets/ba_data/python/baenv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

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

6262

src/assets/ba_data/python/bauiv1lib/account/unlink.py

Lines changed: 0 additions & 152 deletions
This file was deleted.

src/assets/ba_data/python/bauiv1lib/account/viewer.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,11 @@ def __init__(
7171
position=(50, self._height - 30),
7272
size=(50, 50),
7373
scale=0.5,
74-
label='',
74+
label=bui.charstr(bui.SpecialChar.CLOSE),
75+
textcolor=(1, 1, 1),
7576
color=bg_color,
7677
on_activate_call=self._on_cancel_press,
7778
autoselect=True,
78-
icon=bui.gettexture('crossOut'),
79-
iconscale=1.2,
8079
)
8180

8281
self._title_text = bui.textwidget(

src/assets/ba_data/python/bauiv1lib/appinvite.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def __init__(self, data: dict[str, Any]):
3333
if uiscale is bui.UIScale.SMALL
3434
else 1.35 if uiscale is bui.UIScale.MEDIUM else 1.0
3535
),
36+
darken_behind=True,
3637
)
3738
)
3839
self._data = copy.deepcopy(data)
@@ -44,12 +45,11 @@ def __init__(self, data: dict[str, Any]):
4445
scale=0.7,
4546
position=(50, self._height - 50),
4647
size=(60, 60),
47-
label='',
48+
label=bui.charstr(bui.SpecialChar.CLOSE),
49+
textcolor=(1, 1, 1),
4850
on_activate_call=self.close,
4951
autoselect=True,
5052
color=(0.45, 0.63, 0.15),
51-
icon=bui.gettexture('crossOut'),
52-
iconscale=1.2,
5353
)
5454
bui.containerwidget(
5555
edit=self._root_widget, cancel_button=self._cancel_button

0 commit comments

Comments
 (0)