Skip to content

Commit

Permalink
more tidying
Browse files Browse the repository at this point in the history
  • Loading branch information
efroemling committed Dec 21, 2024
1 parent d16698e commit b2df863
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 20 deletions.
32 changes: 16 additions & 16 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 22140, api 9, 2024-12-21)
### 1.7.37 (build 22141, 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 = 22140
TARGET_BALLISTICA_BUILD = 22141
TARGET_BALLISTICA_VERSION = '1.7.37'


Expand Down
4 changes: 3 additions & 1 deletion src/assets/ba_data/python/bauiv1lib/chest.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,9 @@ def _watch_ad_press(self) -> None:

# Allow only one in-flight action at once.
if self._action_in_flight:
bui.screenmessage('ERR', color=(1, 0, 0))
bui.screenmessage(
bui.Lstr(resource='pleaseWaitText'), color=(1, 0, 0)
)
bui.getsound('error').play()
return

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 = 22140;
const int kEngineBuildNumber = 22141;
const char* kEngineVersion = "1.7.37";
const int kEngineApiVersion = 9;

Expand Down

0 comments on commit b2df863

Please sign in to comment.