Skip to content

Commit 8fe9c42

Browse files
committed
v1.7.48
1 parent 71be38d commit 8fe9c42

File tree

17 files changed

+397
-670
lines changed

17 files changed

+397
-670
lines changed

.efrocachemap

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

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### 1.7.48 (build 22510, api 9, 2025-08-30)
1+
### 1.7.48 (build 22512, api 9, 2025-08-31)
22
- Added Kazakh language (Thanks KAZDOG!)
33
- The 'Logging' dev-console-tab is now 'LogLevels'. I kept finding myself going
44
there to look for log output. Maybe this will help.
@@ -12,6 +12,12 @@
1212
- Added `bascenev1.reload_hooks()` (see above).
1313
- Added `bauiv1.reload_hooks()` (see above).
1414
- Added `baclassic.reload_hooks()` (see above).
15+
- Removed the legacy (v1) unlinking UI from the account window, as well as the
16+
ability to show the legacy linking button (has been hidden by default for a
17+
long time but still available with a bit of hacking). If you haven't followed
18+
the advice to remove v1 account links by now, you'll need to install an older
19+
build to do it.
20+
- Modernized the send-info ui and backend a bit.
1521

1622
### 1.7.47 (build 22495, api 9, 2025-08-13)
1723
- All communication with the V1 (Legacy) master server is now tunneled through

src/assets/.asset_manifest_public.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@
198198
"ba_data/python/bauiv1/onscreenkeyboard.py",
199199
"ba_data/python/bauiv1lib/__init__.py",
200200
"ba_data/python/bauiv1lib/account/__init__.py",
201-
"ba_data/python/bauiv1lib/account/link.py",
202201
"ba_data/python/bauiv1lib/account/settings.py",
203202
"ba_data/python/bauiv1lib/account/signin.py",
204203
"ba_data/python/bauiv1lib/account/unlink.py",

src/assets/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,6 @@ SCRIPT_TARGETS_PY_PUBLIC = \
341341
$(BUILD_DIR)/ba_data/python/bauiv1/onscreenkeyboard.py \
342342
$(BUILD_DIR)/ba_data/python/bauiv1lib/__init__.py \
343343
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/__init__.py \
344-
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/link.py \
345344
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/settings.py \
346345
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/signin.py \
347346
$(BUILD_DIR)/ba_data/python/bauiv1lib/account/unlink.py \

src/assets/ba_data/python/baclassic/_appsubsystem.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Released under the MIT License. See LICENSE for details.
22
#
3-
# pylint: disable=too-many-lines
43

54
"""Provides classic app subsystem."""
65
from __future__ import annotations
@@ -684,12 +683,6 @@ def v2_upgrade_window(self, login_name: str, code: str) -> None:
684683

685684
V2UpgradeWindow(login_name, code)
686685

687-
def account_link_code_window(self, data: dict[str, Any]) -> None:
688-
"""(internal)"""
689-
from bauiv1lib.account.link import AccountLinkCodeWindow
690-
691-
AccountLinkCodeWindow(data)
692-
693686
def server_dialog(self, delay: float, data: dict[str, Any]) -> None:
694687
"""(internal)"""
695688
from bauiv1lib.serverdialog import (

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 = 22510
59+
TARGET_BALLISTICA_BUILD = 22512
6060
TARGET_BALLISTICA_VERSION = '1.7.48'
6161

6262

src/assets/ba_data/python/baplus/_cloud.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ def send_message(self, msg: Message) -> Response | None:
353353

354354
@overload
355355
async def send_message_async(
356-
self, msg: bacommon.cloud.SendInfoMessage
357-
) -> bacommon.cloud.SendInfoResponse: ...
356+
self, msg: bacommon.bs.SendInfoMessage
357+
) -> bacommon.bs.SendInfoResponse: ...
358358

359359
@overload
360360
async def send_message_async(

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

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

0 commit comments

Comments
 (0)