diff --git a/CHANGELOG.md b/CHANGELOG.md index a0a088db77ae..109ffd3f9a32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ - Fix local sorting and file selection - Fix local filtering - Fix back navigation on privacy screen +- Fix bug on searching +- Fix crash on sorting +- Fix wrong menu highlighting +- various bug fixes ## 3.2.0 (May, 13, 2018) - Revamped details screen & sharing diff --git a/build.gradle b/build.gradle index e4ec733558e0..3aefe95ea604 100644 --- a/build.gradle +++ b/build.gradle @@ -61,7 +61,7 @@ repositories { def versionMajor = 3 def versionMinor = 2 def versionPatch = 1 -def versionBuild = 99 // 0-49=Alpha / 50-98=RC / 99=stable +def versionBuild = 50 // 0-49=Alpha / 50-98=RC / 99=stable android { lintOptions { @@ -206,9 +206,9 @@ dependencies { // dependencies for app building implementation 'com.android.support:multidex:1.0.3' // implementation project('nextcloud-android-library') - genericImplementation "com.github.nextcloud:android-library:1.0.43" - gplayImplementation "com.github.nextcloud:android-library:1.0.43" - versionDevImplementation 'com.github.nextcloud:android-library:1.0.43' // use always latest master + genericImplementation "com.github.nextcloud:android-library:1.0.43.1" + gplayImplementation "com.github.nextcloud:android-library:1.0.43.1" + versionDevImplementation 'com.github.nextcloud:android-library:1.0.43.1' // use always latest master implementation "com.android.support:support-v4:${supportLibraryVersion}" implementation "com.android.support:design:${supportLibraryVersion}" implementation 'com.jakewharton:disklrucache:2.0.2'