Skip to content

Commit

Permalink
update version.
Browse files Browse the repository at this point in the history
  • Loading branch information
pigpigyyy committed Sep 5, 2024
1 parent 9d821c7 commit 79bdf9b
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Projects/Android/Dora/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
8 changes: 4 additions & 4 deletions Projects/Windows/Dora/Resource.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions Projects/iOS/Dora/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.13</string>
<string>1.5.14</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>80</string>
<string>81</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
4 changes: 2 additions & 2 deletions Projects/macOS/Dora/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.13</string>
<string>1.5.14</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>80</string>
<string>81</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.developer-tools</string>
<key>LSMinimumSystemVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions Source/Basic/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
#include <ctime>
#include <thread>

#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 <jni.h>
Expand Down
2 changes: 1 addition & 1 deletion Source/Wasm/WasmRuntime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion Tools/dora-rust/dora-test/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Tools/dora-rust/dora/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Tools/dora-rust/dora/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dora-ssr"
version = "0.4.3"
version = "0.4.4"
authors = ["Li Jin <dragon-fly@qq.com>"]
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 79bdf9b

Please sign in to comment.