Loading app/build.gradle +2 −2 Original line number Diff line number Diff line Loading @@ -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 { Loading app/src/main/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -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"> Loading app/src/main/java/it/niedermann/owncloud/notes/android/quicksettings/NewNoteTileService.java +2 −9 Original line number Diff line number Diff line Loading @@ -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)); } } fastlane/metadata/android/en-US/changelogs/46.txt 0 → 100644 +3 −0 Original line number Diff line number Diff line - #567 Enable pinning notes as shortcut - #575 Added preference "Font Size" - Fix "New note" tile Loading
app/build.gradle +2 −2 Original line number Diff line number Diff line Loading @@ -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 { Loading
app/src/main/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -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"> Loading
app/src/main/java/it/niedermann/owncloud/notes/android/quicksettings/NewNoteTileService.java +2 −9 Original line number Diff line number Diff line Loading @@ -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)); } }
fastlane/metadata/android/en-US/changelogs/46.txt 0 → 100644 +3 −0 Original line number Diff line number Diff line - #567 Enable pinning notes as shortcut - #575 Added preference "Font Size" - Fix "New note" tile