diff options
author | 2020-10-27 12:00:36 +1100 | |
---|---|---|
committer | 2020-10-27 12:00:36 +1100 | |
commit | 3c56452b07a41724a8d13d15a713746446291498 (patch) | |
tree | efe4b77aa20c2ff528ee5f54848b6a41057aaa2f | |
parent | 2637351cbd777eb10629bb2f8bc12eab08ab72a6 (diff) |
Bump version to 0.226mame0226
-rw-r--r-- | android-project/app/src/main/AndroidManifest.xml | 4 | ||||
-rw-r--r-- | makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml index be78134bc00..d0afb50b5aa 100644 --- a/android-project/app/src/main/AndroidManifest.xml +++ b/android-project/app/src/main/AndroidManifest.xml @@ -4,8 +4,8 @@ --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.mamedev.mame" - android:versionCode="225" - android:versionName="0.225" + android:versionCode="226" + android:versionName="0.226" android:installLocation="auto"> <!-- OpenGL ES 2.0 --> @@ -1719,14 +1719,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.225"' > $@ + @echo '#define BARE_BUILD_VERSION "0.226"' > $@ @echo 'extern const char bare_build_version[];' >> $@ @echo 'extern const char build_version[];' >> $@ @echo 'const char bare_build_version[] = BARE_BUILD_VERSION;' >> $@ @echo 'const char build_version[] = BARE_BUILD_VERSION " ($(NEW_GIT_VERSION))";' >> $@ else $(GENDIR)/version.cpp: makefile $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo #define BARE_BUILD_VERSION "0.225" > $@ + @echo #define BARE_BUILD_VERSION "0.226" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ |