Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefan-niedermann <info@niedermann.it>2019-08-21 16:32:10 +0300
committerstefan-niedermann <info@niedermann.it>2019-08-21 16:32:10 +0300
commit8955a298f18fa3f02c13625d545889f8b44e06e3 (patch)
treeb919916a01c15ec403a7ea82b7e7a3326f0a6a65
parent9624bb65c9605c453111e98031e09446f2bef626 (diff)
Fix "New note" tilev0.27.0
-rw-r--r--app/build.gradle4
-rw-r--r--app/src/main/AndroidManifest.xml2
-rw-r--r--app/src/main/java/it/niedermann/owncloud/notes/android/quicksettings/NewNoteTileService.java11
-rw-r--r--fastlane/metadata/android/en-US/changelogs/46.txt3
4 files changed, 8 insertions, 12 deletions
diff --git a/app/build.gradle b/app/build.gradle
index a2b95371..b145de01 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -13,8 +13,8 @@ android {
applicationId "it.niedermann.owncloud.notes"
minSdkVersion 14
targetSdkVersion 28
- versionCode 45
- versionName "0.26.0"
+ versionCode 46
+ versionName "0.27.0"
}
buildTypes {
release {
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index fbd7c26a..3af99f24 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -10,9 +10,9 @@
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
- android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
+ android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
diff --git a/app/src/main/java/it/niedermann/owncloud/notes/android/quicksettings/NewNoteTileService.java b/app/src/main/java/it/niedermann/owncloud/notes/android/quicksettings/NewNoteTileService.java
index af7eb75e..ca101c88 100644
--- a/app/src/main/java/it/niedermann/owncloud/notes/android/quicksettings/NewNoteTileService.java
+++ b/app/src/main/java/it/niedermann/owncloud/notes/android/quicksettings/NewNoteTileService.java
@@ -27,15 +27,8 @@ public class NewNoteTileService extends TileService {
// create new note intent
final Intent newNoteIntent = new Intent(getApplicationContext(), EditNoteActivity.class);
// ensure it won't open twice if already running
- newNoteIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
-
+ newNoteIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
// ask to unlock the screen if locked, then start new note intent
- unlockAndRun(new Runnable() {
- @Override
- public void run() {
- startActivityAndCollapse(newNoteIntent);
- }
- });
-
+ unlockAndRun(() -> startActivityAndCollapse(newNoteIntent));
}
}
diff --git a/fastlane/metadata/android/en-US/changelogs/46.txt b/fastlane/metadata/android/en-US/changelogs/46.txt
new file mode 100644
index 00000000..b4e8342a
--- /dev/null
+++ b/fastlane/metadata/android/en-US/changelogs/46.txt
@@ -0,0 +1,3 @@
+- #567 Enable pinning notes as shortcut
+- #575 Added preference "Font Size"
+- Fix "New note" tile