feat: add option to keep conversations archived (#501)

* feat: add option to keep conversations archived

Refs: https://github.com/FossifyOrg/Messages/issues/334

* fix: archive/unarchive when mms is received

Previously, conversations weren't unarchived for new MMS messages.

* docs: update changelog
This commit is contained in:
Naveen Singh 2025-09-01 01:15:01 +05:30 committed by GitHub
parent cfc16dd886
commit cf839e99df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 59 additions and 2 deletions

View file

@ -351,6 +351,32 @@
android:id="@+id/settings_outgoing_messages_divider"
layout="@layout/divider" />
<TextView
android:id="@+id/settings_archived_messages_label"
style="@style/SettingsSectionLabelStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/archive" />
<RelativeLayout
android:id="@+id/settings_keep_conversations_archived_holder"
style="@style/SettingsHolderSwitchStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<org.fossify.commons.views.MyMaterialSwitch
android:id="@+id/settings_keep_conversations_archived"
style="@style/SettingsSwitchStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/keep_conversations_archived" />
</RelativeLayout>
<include
android:id="@+id/settings_archive_divider"
layout="@layout/divider" />
<TextView
android:id="@+id/settings_recycle_bin_label"
style="@style/SettingsSectionLabelStyle"