This commit is contained in:
Eric Froemling 2022-07-20 13:03:26 -07:00
parent 32cb060091
commit 4f9af6d8cd
No known key found for this signature in database
GPG Key ID: 89C93F0F8D6D5A98
4 changed files with 600 additions and 600 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
### 1.7.5 (build 20661, api 7, 2022-07-20) ### 1.7.5 (build 20662, api 7, 2022-07-20)
- Android build now uses the ReLinker library to load the native main.so, which will (hopefully) avoid some random load failures on older Android versions. - Android build now uses the ReLinker library to load the native main.so, which will (hopefully) avoid some random load failures on older Android versions.
- Android Google Play build now prints a message at launch if the billing library isn't available or needs to be updated (explaining why purchases won't work in that case). - Android Google Play build now prints a message at launch if the billing library isn't available or needs to be updated (explaining why purchases won't work in that case).
- Various minor bug fixes (mostly cleaning up unnecessary error logging) - Various minor bug fixes (mostly cleaning up unnecessary error logging)

View File

@ -21,7 +21,7 @@
namespace ballistica { namespace ballistica {
// These are set automatically via script; don't modify them here. // These are set automatically via script; don't modify them here.
const int kAppBuildNumber = 20661; const int kAppBuildNumber = 20662;
const char* kAppVersion = "1.7.5"; const char* kAppVersion = "1.7.5";
// Our standalone globals. // Our standalone globals.

View File

@ -28,7 +28,7 @@ def _handle_args(args: list[str]) -> Mode:
"""parse os args and return a mode""" """parse os args and return a mode"""
mode: Mode | None = None mode: Mode | None = None
if len(args) == 0: if len(args) == 0:
print('OPTIONS: info, build, version', 'apiversion') print('OPTIONS: info, build, version', 'api')
raise CleanError() raise CleanError()
try: try: