Skip to content

Commit 7e07fc1

Browse files
committed
v1.7.59
1 parent 774995b commit 7e07fc1

File tree

5 files changed

+42
-39
lines changed

5 files changed

+42
-39
lines changed

.efrocachemap

Lines changed: 34 additions & 34 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.59 (build 22675, api 9, 2025-12-11)
1+
### 1.7.59 (build 22677, api 9, 2025-12-12)
22
- Added a 'League President' button in the league-rank window. The back-end is
33
still under construction, but it'll soon be possible to bid tickets to become
44
president of your current league. It is a totally meaningless role but I'm

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 = 22675
59+
TARGET_BALLISTICA_BUILD = 22677
6060
TARGET_BALLISTICA_VERSION = '1.7.59'
6161

6262

src/ballistica/shared/ballistica.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ auto main(int argc, char** argv) -> int {
4444
namespace ballistica {
4545

4646
// These are set automatically via script; don't modify them here.
47-
const int kEngineBuildNumber = 22675;
47+
const int kEngineBuildNumber = 22677;
4848
const char* kEngineVersion = "1.7.59";
4949
const int kEngineApiVersion = 9;
5050

tools/efro/util.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,10 @@ def set_canonical_module_names(module_globals: dict[str, Any]) -> None:
826826

827827

828828
def timedelta_str(
829-
timeval: datetime.timedelta | float, *, maxparts: int = 2, decimals: int = 0
829+
timeval: datetime.timedelta | float | int,
830+
*,
831+
maxparts: int = 2,
832+
decimals: int = 0,
830833
) -> str:
831834
"""Return a simple human readable time string for a length of time.
832835
@@ -843,7 +846,7 @@ def timedelta_str(
843846
"""
844847
# pylint: disable=too-many-locals
845848

846-
if isinstance(timeval, float):
849+
if isinstance(timeval, float | int):
847850
timevalfin = datetime.timedelta(seconds=timeval)
848851
else:
849852
timevalfin = timeval

0 commit comments

Comments
 (0)