diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-07-20 01:01:57 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-07-20 01:01:57 +0000 |
commit | f68e4aad09427570ea0ceb2623576be125cd767a (patch) | |
tree | 6e2c1aab5a7d8fc82973c45cb454399aaea051b5 /app/src/main/res | |
parent | 7bef0f28ca320e44b50ebed7253ec1dd6075693e (diff) | |
download | infinity-for-reddit-f68e4aad09427570ea0ceb2623576be125cd767a.tar infinity-for-reddit-f68e4aad09427570ea0ceb2623576be125cd767a.tar.gz infinity-for-reddit-f68e4aad09427570ea0ceb2623576be125cd767a.tar.bz2 infinity-for-reddit-f68e4aad09427570ea0ceb2623576be125cd767a.tar.lz infinity-for-reddit-f68e4aad09427570ea0ceb2623576be125cd767a.tar.xz infinity-for-reddit-f68e4aad09427570ea0ceb2623576be125cd767a.tar.zst infinity-for-reddit-f68e4aad09427570ea0ceb2623576be125cd767a.zip |
New option: Remeber Muting Option in Post Feed.
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/values/strings.xml | 1 | ||||
-rw-r--r-- | app/src/main/res/xml/video_preferences.xml | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 276f2746..f44c7c92 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -586,6 +586,7 @@ <string name="settings_disable_nsfw_forever_title">Disable NSFW Forever</string> <string name="settings_show_only_one_comment_level_indicator">Show Only One Comment Level Indicator</string> <string name="settings_video_player_automatic_landscape_orientation">Switch to Landscape Orientation in Video Player Automatically</string> + <string name="settings_remember_muting_option_in_post_feed">Remember Muting Option in Post Feed</string> <string name="no_link_available">Cannot get the link</string> diff --git a/app/src/main/res/xml/video_preferences.xml b/app/src/main/res/xml/video_preferences.xml index 93ccff6b..93a77e9f 100644 --- a/app/src/main/res/xml/video_preferences.xml +++ b/app/src/main/res/xml/video_preferences.xml @@ -21,6 +21,11 @@ <SwitchPreference app:defaultValue="false" + app:key="remember_mute_status_in_post_feed" + app:title="@string/settings_automatically_try_redgifs_title" /> + + <SwitchPreference + app:defaultValue="false" app:key="video_player_ignore_nav_bar" app:title="@string/settings_video_player_ignore_nav_bar_title" app:summary="@string/settings_video_player_ignore_nav_bar_summary" /> @@ -48,6 +53,11 @@ app:title="@string/settings_mute_autoplaying_videos_title" /> <SwitchPreference + app:defaultValue="false" + app:key="remember_muting_option_in_post_feed" + app:title="@string/settings_remember_muting_option_in_post_feed" /> + + <SwitchPreference app:defaultValue="true" app:key="autoplay_nsfw_videos" app:title="@string/settings_autoplay_nsfw_videos_title" /> |