feat: add new preference to unmute videos by default (#3218)

This commit is contained in:
TAKAHASHI Shuuji 2025-03-02 23:55:00 +09:00 committed by GitHub
parent 60b1d0224c
commit 41379627b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 12 additions and 2 deletions

View file

@ -23,6 +23,7 @@ export interface PreferencesSettings {
hideNews: boolean
grayscaleMode: boolean
enableAutoplay: boolean
unmuteVideos: boolean
optimizeForLowPerformanceDevice: boolean
enableDataSaving: boolean
enablePinchToZoom: boolean
@ -79,6 +80,7 @@ export const DEFAULT__PREFERENCES_SETTINGS: PreferencesSettings = {
hideNews: false,
grayscaleMode: false,
enableAutoplay: true,
unmuteVideos: false,
optimizeForLowPerformanceDevice: false,
enableDataSaving: false,
enablePinchToZoom: false,