diff --git a/app/build.gradle b/app/build.gradle index 464da616d..47616d831 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -13,8 +13,8 @@ android { defaultConfig { minSdk 21 targetSdk 33 - versionCode 458 - versionName "3.13.4" + versionCode 459 + versionName "3.13.5" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } flavorDimensions "default" diff --git a/app/src/main/assets/release_notes/notes.json b/app/src/main/assets/release_notes/notes.json index 6d5afedbc..f0b81c4b6 100644 --- a/app/src/main/assets/release_notes/notes.json +++ b/app/src/main/assets/release_notes/notes.json @@ -1,4 +1,9 @@ [ + { + "version": "3.13.5", + "code": "459", + "note": "Added:\n- Glitch: Allow to post messages locally (Can be turned off in Settings)\n\nFixed:\n- Crashes" + }, { "version": "3.13.4", "code": "458", diff --git a/app/src/main/java/app/fedilab/android/ui/drawer/ComposeAdapter.java b/app/src/main/java/app/fedilab/android/ui/drawer/ComposeAdapter.java index 054e6e4de..2d02e143e 100644 --- a/app/src/main/java/app/fedilab/android/ui/drawer/ComposeAdapter.java +++ b/app/src/main/java/app/fedilab/android/ui/drawer/ComposeAdapter.java @@ -1278,8 +1278,11 @@ public class ComposeAdapter extends RecyclerView.Adapter { AlertDialog.Builder builder = new AlertDialog.Builder(context, Helper.dialogStyle()); builder.setTitle(context.getString(R.string.post_format)); @@ -1313,8 +1316,8 @@ public class ComposeAdapter extends RecyclerView.Adaptertext/x.misskeymarkdown + + 0 + 1 + No @@ -1441,7 +1445,7 @@ SET_DISPLAY_TRANSLATE SET_POST_FORMAT - SET_LOCAL_ONLY + SET_COMPOSE_LOCAL_ONLY SET_TRANSLATOR SET_TRANSLATOR_VERSION @@ -1455,7 +1459,7 @@ SET_PROFILE_REMOTELY SET_EXTAND_EXTRA_FEATURES - + SET_DISPLAY_LOCAL_ONLY SET_INNER_MARKER SET_NOTIF_SILENT SET_REMEMBER_POSITION @@ -2194,4 +2198,5 @@ Remote profiles The app will display publicly profiles to get all messages. Interactions will need an extra step to federate messages. Local only + Display \"Local only\" button \ No newline at end of file diff --git a/app/src/main/res/xml/pref_extra_features.xml b/app/src/main/res/xml/pref_extra_features.xml index 91d0a2637..26af2edf3 100644 --- a/app/src/main/res/xml/pref_extra_features.xml +++ b/app/src/main/res/xml/pref_extra_features.xml @@ -47,6 +47,12 @@ app:key="@string/SET_DISPLAY_REACTIONS" app:singleLineTitle="false" app:title="@string/set_display_reaction_indication" /> + + + \ No newline at end of file diff --git a/src/fdroid/fastlane/metadata/android/en/changelogs/459.txt b/src/fdroid/fastlane/metadata/android/en/changelogs/459.txt new file mode 100644 index 000000000..e5cf9e108 --- /dev/null +++ b/src/fdroid/fastlane/metadata/android/en/changelogs/459.txt @@ -0,0 +1,5 @@ +Added: +- Glitch: Allow to post messages locally (Can be turned off in Settings) + +Fixed: +- Crashes \ No newline at end of file