Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ repositories {
def versionMajor = 3
def versionMinor = 5
def versionPatch = 0
def versionBuild = 0 // 0-50=Alpha / 51-98=RC / 90-99=stable
def versionBuild = 51 // 0-50=Alpha / 51-98=RC / 90-99=stable

def taskRequest = getGradle().getStartParameter().getTaskRequests().toString()
if (taskRequest.contains("Gplay") || taskRequest.contains("findbugs") || taskRequest.contains("lint")) {
Expand Down Expand Up @@ -210,9 +210,9 @@ dependencies {
// dependencies for app building
implementation 'androidx.multidex:multidex:2.0.1'
// implementation project('nextcloud-android-library')
genericImplementation 'com.github.nextcloud:android-library:master-SNAPSHOT'
gplayImplementation 'com.github.nextcloud:android-library:master-SNAPSHOT'
versionDevImplementation 'com.github.nextcloud:android-library:master-SNAPSHOT'
genericImplementation 'com.github.nextcloud:android-library:1.3.0'
gplayImplementation 'com.github.nextcloud:android-library:1.3.0'
versionDevImplementation 'com.github.nextcloud:android-library:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
Expand Down
10 changes: 0 additions & 10 deletions fastlane/metadata/android/en-US/changelogs/30020199.txt

This file was deleted.

15 changes: 15 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/30050051.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
3.5.0 RC1 (January, 29, 2019)

- Chunked upload: 1mb on wifi, 10mb on wlan
- switch to Material design
- Option to not show notifications for new media folders
- Add support for QR codes & deep links
- Direct camera upload
- Fully working Document provider
- Detail view: show complete date on click
- Show correct share error message
- Use default/device font
- Sync all downloaded
- Add battery optimization warning

For full list please see https://github.com/nextcloud/android/milestone/28
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ protected void onCreate(Bundle savedInstanceState) {
mPager.setAdapter(featuresWebViewAdapter);
} else {
FeaturesViewAdapter featuresViewAdapter = new FeaturesViewAdapter(getSupportFragmentManager(),
getWhatsNew(this));
getWhatsNew());
mProgress.setNumberOfSteps(featuresViewAdapter.getCount());
mPager.setAdapter(featuresViewAdapter);
}
Expand Down Expand Up @@ -150,7 +150,7 @@ public static void runIfNeeded(Context context) {
}

private static boolean shouldShow(Context context) {
return !(context instanceof PassCodeActivity) && getWhatsNew(context).length > 0;
return !(context instanceof PassCodeActivity) && getWhatsNew().length > 0;
}

@Override
Expand All @@ -173,16 +173,7 @@ static private boolean isFirstRun(Context context) {
return AccountUtils.getCurrentOwnCloudAccount(context) == null;
}

static private FeatureItem[] getWhatsNew(Context context) {
int itemVersionCode = 30030099;

if (!isFirstRun(context) && MainApp.getVersionCode() >= itemVersionCode
&& PreferenceManager.getLastSeenVersionCode(context) < itemVersionCode) {
return new FeatureItem[]{new FeatureItem(R.drawable.whats_new_device_credentials,
R.string.whats_new_device_credentials_title, R.string.whats_new_device_credentials_content,
false, false)};
} else {
return new FeatureItem[0];
}
static private FeatureItem[] getWhatsNew() {
return new FeatureItem[0];
}
}
Binary file not shown.
2 changes: 0 additions & 2 deletions src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -772,15 +772,13 @@
<string name="updating_share_failed">Updating share failed</string>
<string name="prefs_e2e_mnemonic">E2E mnemonic</string>
<string name="prefs_e2e_no_device_credentials">To show mnemonic please enable device credentials.</string>
<string name="whats_new_device_credentials_title">Use Android\'s device internal protection</string>
<string name="login">Log in</string>
<string name="signup_with_provider">Sign up with provider</string>
<string name="host_your_own_server">Host your own server</string>
<string name="first_run_1_text">Keep your data secure and under your control</string>
<string name="first_run_2_text">Secure collaboration &amp; file exchange</string>
<string name="first_run_3_text">Easy-to-use web mail, calendering &amp; contacts</string>
<string name="first_run_4_text">Screensharing, online meetings &amp; web conferences</string>
<string name="whats_new_device_credentials_content">Use anything like a pattern, password, pin or your fingerprint to keep your data safe.</string>
<string name="restore_button_description">Restore deleted file</string>
<string name="restore">Restore file</string>
<string name="new_version_was_created">New version was created</string>
Expand Down