Skip to content

Commit 469da98

Browse files
authored
Merge pull request #2151 from owncloud/2.7.0_beta_v1
Release 2.7.0 beta v1
2 parents 14a2b28 + e4c7432 commit 469da98

21 files changed

+61
-120
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 2.7.0 beta v1 (March 2018)
2+
- Fingerprint lock
3+
- Pattern lock (contribution)
4+
- Upload picture directly from camera (contribution)
5+
- GIF support
6+
- New features wizard
7+
- UI improvements, including:
8+
+ Display file size during upload (contribution)
9+
- Bug fixes, including:
10+
+ Hide always visible notification in Android 8
11+
112
## 2.6.0 (February 2018)
213
- Camera uploads, replacing instant uploads (Android 5 or higher required)
314
- Android 8 support

beta/res/mipmap-hdpi/icon.png

-4.12 KB
Binary file not shown.

beta/res/mipmap-mdpi/icon.png

-2.77 KB
Binary file not shown.

beta/res/mipmap-xhdpi/icon.png

-5.81 KB
Binary file not shown.

beta/res/mipmap-xxhdpi/icon.png

-10.1 KB
Binary file not shown.

beta/res/mipmap-xxxhdpi/icon.png

-16 KB
Binary file not shown.

beta/res/values/setup.xml

Lines changed: 0 additions & 77 deletions
This file was deleted.

build.gradle

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ android {
100100

101101
defaultConfig {
102102

103-
manifestPlaceholders.versionCode = "20600000"
104-
manifestPlaceholders.versionName = "2.6.0"
103+
manifestPlaceholders.versionCode = "20600100"
104+
manifestPlaceholders.versionName = "2.7.0-beta.1"
105105

106106
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
107107

@@ -135,10 +135,6 @@ android {
135135
assets.srcDirs = ['assets']
136136
}
137137

138-
beta {
139-
res.srcDirs = ['beta/res']
140-
}
141-
142138
// move whole local unit tests structure as a whole from src/test/* to test/*
143139
test.setRoot('test')
144140

@@ -181,14 +177,6 @@ android {
181177
keyPassword System.env.OC_RELEASE_KEY_PASSWORD
182178
}
183179
}
184-
beta {
185-
if (System.env.OC_BETA_KEYSTORE) {
186-
storeFile file(System.env.OC_BETA_KEYSTORE) // use an absolute path
187-
storePassword System.env.OC_BETA_KEYSTORE_PASSWORD
188-
keyAlias System.env.OC_BETA_KEY_ALIAS
189-
keyPassword System.env.OC_BETA_KEY_PASSWORD
190-
}
191-
}
192180
}
193181

194182
buildTypes {
@@ -202,16 +190,6 @@ android {
202190
debug {
203191
applicationIdSuffix ".debug"
204192
}
205-
206-
beta {
207-
manifestPlaceholders.versionCode = "20500001"
208-
manifestPlaceholders.versionName = "2.5.1-beta.1"
209-
applicationIdSuffix ".beta"
210-
211-
if (System.env.OC_BETA_KEYSTORE) {
212-
signingConfig signingConfigs.beta
213-
}
214-
}
215193
}
216194

217195
applicationVariants.all { variant ->
9.02 KB
Loading
4.39 KB
Loading

0 commit comments

Comments
 (0)