Skip to content

Commit

Permalink
windows fix
Browse files Browse the repository at this point in the history
  • Loading branch information
efroemling committed Nov 20, 2024
1 parent 33e6893 commit 69aaf6d
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 29 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 22103, api 9, 2024-11-19)
### 1.7.37 (build 22105, api 9, 2024-11-19)
- 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
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -930,7 +930,8 @@ test-rpc:
tests/test_efro/test_rpc.py

# Tell make which of these targets don't represent files.
.PHONY: test test-verbose test-full test-message test-dataclassio test-rpc
.PHONY: test test-fast test-verbose test-full test-fast-full \
test-message test-dataclassio test-rpc


################################################################################
Expand Down
2 changes: 1 addition & 1 deletion src/assets/ba_data/python/babase/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def _process_module_meta_tags(
# Make an exception for this specific file, otherwise we
# get lots of warnings about ba_meta showing up in weird
# places here.
if str(subpath) not in ('babase/_meta.py',):
if subpath.as_posix() != 'babase/_meta.py':
logging.warning(
'metascan: %s:%d: malformed ba_meta statement.',
subpath,
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 = 22103
TARGET_BALLISTICA_BUILD = 22105
TARGET_BALLISTICA_VERSION = '1.7.37'


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

Expand Down

0 comments on commit 69aaf6d

Please sign in to comment.