From bd03e0f759a12b80bd6250d61569a98cf1c78239 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Thu, 5 Sep 2024 10:12:38 +0800 Subject: [PATCH] update version. --- Projects/Android/Dora/app/build.gradle | 4 ++-- Projects/Windows/Dora/Resource.rc | 8 ++++---- Projects/iOS/Dora/Info.plist | 4 ++-- Projects/macOS/Dora/Info.plist | 4 ++-- Source/Basic/Application.cpp | 4 ++-- Source/Wasm/WasmRuntime.cpp | 2 +- Tools/dora-rust/dora-test/Cargo.lock | 2 +- Tools/dora-rust/dora/Cargo.lock | 2 +- Tools/dora-rust/dora/Cargo.toml | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Projects/Android/Dora/app/build.gradle b/Projects/Android/Dora/app/build.gradle index bac181222..286cc4ffa 100644 --- a/Projects/Android/Dora/app/build.gradle +++ b/Projects/Android/Dora/app/build.gradle @@ -7,8 +7,8 @@ android { applicationId "org.ippclub.dorassr" minSdkVersion 28 targetSdkVersion 34 - versionCode 80 - versionName "1.5.13" + versionCode 81 + versionName "1.5.14" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' externalNativeBuild { cmake { diff --git a/Projects/Windows/Dora/Resource.rc b/Projects/Windows/Dora/Resource.rc index 4d28755a1..f620dfd8a 100644 --- a/Projects/Windows/Dora/Resource.rc +++ b/Projects/Windows/Dora/Resource.rc @@ -61,8 +61,8 @@ IDI_ICON1 ICON "Dora SSR.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,5,13,0 - PRODUCTVERSION 1,5,13,0 + FILEVERSION 1,5,14,0 + PRODUCTVERSION 1,5,14,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -79,12 +79,12 @@ BEGIN BEGIN VALUE "CompanyName", "IppClub" VALUE "FileDescription", "A game engine for rapid game development." - VALUE "FileVersion", "1.5.13.0" + VALUE "FileVersion", "1.5.14.0" VALUE "InternalName", "Dora.exe" VALUE "LegalCopyright", "Copyright (C) 2024" VALUE "OriginalFilename", "Dora.exe" VALUE "ProductName", "Dora SSR" - VALUE "ProductVersion", "1.5.13.0" + VALUE "ProductVersion", "1.5.14.0" END END BLOCK "VarFileInfo" diff --git a/Projects/iOS/Dora/Info.plist b/Projects/iOS/Dora/Info.plist index 26ecfcb3d..c0c7f25e3 100644 --- a/Projects/iOS/Dora/Info.plist +++ b/Projects/iOS/Dora/Info.plist @@ -15,11 +15,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.13 + 1.5.14 CFBundleSignature ???? CFBundleVersion - 80 + 81 LSRequiresIPhoneOS UILaunchStoryboardName diff --git a/Projects/macOS/Dora/Info.plist b/Projects/macOS/Dora/Info.plist index addea2592..d643642cd 100644 --- a/Projects/macOS/Dora/Info.plist +++ b/Projects/macOS/Dora/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.5.13 + 1.5.14 CFBundleSignature ???? CFBundleVersion - 80 + 81 LSApplicationCategoryType public.app-category.developer-tools LSMinimumSystemVersion diff --git a/Source/Basic/Application.cpp b/Source/Basic/Application.cpp index 3b0eb5089..e6fb81460 100644 --- a/Source/Basic/Application.cpp +++ b/Source/Basic/Application.cpp @@ -29,8 +29,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI #include #include -#define DORA_VERSION "1.5.13"_slice -#define DORA_REVISION "2"_slice +#define DORA_VERSION "1.5.14"_slice +#define DORA_REVISION "1"_slice #if BX_PLATFORM_ANDROID #include diff --git a/Source/Wasm/WasmRuntime.cpp b/Source/Wasm/WasmRuntime.cpp index 5cf88e324..5aa33da34 100644 --- a/Source/Wasm/WasmRuntime.cpp +++ b/Source/Wasm/WasmRuntime.cpp @@ -19,7 +19,7 @@ NS_DORA_BEGIN #define DoraVersion(major, minor, patch) ((major) << 16 | (minor) << 8 | (patch)) -static const int doraWASMVersion = DoraVersion(0, 4, 3); +static const int doraWASMVersion = DoraVersion(0, 4, 4); static std::string VersionToStr(int version) { return std::to_string((version & 0x00ff0000) >> 16) + '.' + std::to_string((version & 0x0000ff00) >> 8) + '.' + std::to_string(version & 0x000000ff); diff --git a/Tools/dora-rust/dora-test/Cargo.lock b/Tools/dora-rust/dora-test/Cargo.lock index cc37ea87f..89039795c 100644 --- a/Tools/dora-rust/dora-test/Cargo.lock +++ b/Tools/dora-rust/dora-test/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "dora-ssr" -version = "0.4.3" +version = "0.4.4" dependencies = [ "enumflags2", "once_cell", diff --git a/Tools/dora-rust/dora/Cargo.lock b/Tools/dora-rust/dora/Cargo.lock index 370447c96..8e372bd56 100644 --- a/Tools/dora-rust/dora/Cargo.lock +++ b/Tools/dora-rust/dora/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "dora-ssr" -version = "0.4.3" +version = "0.4.4" dependencies = [ "enumflags2", "once_cell", diff --git a/Tools/dora-rust/dora/Cargo.toml b/Tools/dora-rust/dora/Cargo.toml index 04ee8bcd2..ff0d6fa40 100644 --- a/Tools/dora-rust/dora/Cargo.toml +++ b/Tools/dora-rust/dora/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dora-ssr" -version = "0.4.3" +version = "0.4.4" authors = ["Li Jin "] edition = "2021" license = "MIT"