Skip to content

Commit 60c4e88

Browse files
committed
Bump version to 1.18
Make the versionCode a decimal representation of the scrcpy version. This will for example allow to correctly number the versionCode of v1.17.1 after a v1.18 is released: - v1.18 -> 11800 - v1.17.1 -> 11701 - v1.18.1 -> 11801
1 parent ff7baad commit 60c4e88

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('scrcpy', 'c',
2-
version: '1.17',
2+
version: '1.18',
33
meson_version: '>= 0.48',
44
default_options: [
55
'c_std=c11',

server/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "com.genymobile.scrcpy"
77
minSdkVersion 21
88
targetSdkVersion 30
9-
versionCode 20
10-
versionName "1.17"
9+
versionCode 11800
10+
versionName "1.18"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {

server/build_without_gradle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
set -e
1313

1414
SCRCPY_DEBUG=false
15-
SCRCPY_VERSION_NAME=1.17
15+
SCRCPY_VERSION_NAME=1.18
1616

1717
PLATFORM=${ANDROID_PLATFORM:-30}
1818
BUILD_TOOLS=${ANDROID_BUILD_TOOLS:-30.0.0}

0 commit comments

Comments
 (0)