Skip to content

Commit

Permalink
tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
efroemling committed Dec 21, 2024
1 parent b2df863 commit 8791b13
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 30 deletions.
48 changes: 24 additions & 24 deletions .efrocachemap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 1.7.37 (build 22141, api 9, 2024-12-21)
### 1.7.37 (build 22142, api 9, 2024-12-21)
- Bumping api version to 9. As you'll see below, there's some UI changes that
will require a bit of work for any UI mods to adapt to. If your mods don't
touch UI stuff at all you can simply bump your api version and call it a day.
Expand Down
2 changes: 1 addition & 1 deletion src/assets/ba_data/python/baenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# Build number and version of the ballistica binary we expect to be
# using.
TARGET_BALLISTICA_BUILD = 22141
TARGET_BALLISTICA_BUILD = 22142
TARGET_BALLISTICA_VERSION = '1.7.37'


Expand Down
6 changes: 3 additions & 3 deletions src/assets/ba_data/python/bauiv1lib/chest.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
class ChestWindow(bui.MainWindow):
"""Allows operations on a chest."""

def __del__(self) -> None:
print('~ChestWindow()')
# def __del__(self) -> None:
# print('~ChestWindow()')

def __init__(
self,
index: int,
transition: str | None = 'in_right',
origin_widget: bui.Widget | None = None,
):
print('ChestWindow()')
# print('ChestWindow()')

self._index = index

Expand Down
2 changes: 1 addition & 1 deletion src/ballistica/shared/ballistica.cc
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ auto main(int argc, char** argv) -> int {
namespace ballistica {

// These are set automatically via script; don't modify them here.
const int kEngineBuildNumber = 22141;
const int kEngineBuildNumber = 22142;
const char* kEngineVersion = "1.7.37";
const int kEngineApiVersion = 9;

Expand Down

0 comments on commit 8791b13

Please sign in to comment.