mirror of
https://github.com/yattee/yattee.git
synced 2024-12-13 05:40:32 +05:30
322a550666
- iPad: rotate to device orientation on startup - fixed controls in portrait fullscreen - iOS: don’t call setNeedsDrawing multiple times - On iOS we call set needs drawing only once. - Added cooldown time to MPV.Client setNeedsDrawing to avoid multiple successive calls - make fullscreen animation smoother - dragGesture now calls toggleFullScreenAction - fix tvOS and macOS build Signed-off-by: Toni Förster <toni.foerster@gmail.com>
55 lines
2.4 KiB
Swift
55 lines
2.4 KiB
Swift
import Defaults
|
|
import SwiftyJSON
|
|
|
|
final class PlayerSettingsGroupExporter: SettingsGroupExporter {
|
|
override var globalJSON: JSON {
|
|
[
|
|
"playerInstanceID": Defaults[.playerInstanceID] ?? "",
|
|
"pauseOnHidingPlayer": Defaults[.pauseOnHidingPlayer],
|
|
"closeVideoOnEOF": Defaults[.closeVideoOnEOF],
|
|
"exitFullscreenOnEOF": Defaults[.exitFullscreenOnEOF],
|
|
"expandVideoDescription": Defaults[.expandVideoDescription],
|
|
"collapsedLinesDescription": Defaults[.collapsedLinesDescription],
|
|
"showChapters": Defaults[.showChapters],
|
|
"showChapterThumbnails": Defaults[.showChapterThumbnails],
|
|
"showChapterThumbnailsOnlyWhenDifferent": Defaults[.showChapterThumbnailsOnlyWhenDifferent],
|
|
"expandChapters": Defaults[.expandChapters],
|
|
"showRelated": Defaults[.showRelated],
|
|
"showInspector": Defaults[.showInspector].rawValue,
|
|
"playerSidebar": Defaults[.playerSidebar].rawValue,
|
|
"showKeywords": Defaults[.showKeywords],
|
|
"enableReturnYouTubeDislike": Defaults[.enableReturnYouTubeDislike],
|
|
"closePiPOnNavigation": Defaults[.closePiPOnNavigation],
|
|
"closePiPOnOpeningPlayer": Defaults[.closePiPOnOpeningPlayer],
|
|
"closePlayerOnOpeningPiP": Defaults[.closePlayerOnOpeningPiP],
|
|
"captionsAutoShow": Defaults[.captionsAutoShow],
|
|
"captionsDefaultLanguageCode": Defaults[.captionsDefaultLanguageCode],
|
|
"captionsFallbackLanguageCode": Defaults[.captionsFallbackLanguageCode],
|
|
"captionsFontScaleSize": Defaults[.captionsFontScaleSize],
|
|
"captionsFontColor": Defaults[.captionsFontColor]
|
|
]
|
|
}
|
|
|
|
override var platformJSON: JSON {
|
|
var export = JSON()
|
|
|
|
#if !os(macOS)
|
|
export["pauseOnEnteringBackground"].bool = Defaults[.pauseOnEnteringBackground]
|
|
#endif
|
|
|
|
export["showComments"].bool = Defaults[.showComments]
|
|
|
|
#if !os(tvOS)
|
|
export["showScrollToTopInComments"].bool = Defaults[.showScrollToTopInComments]
|
|
#endif
|
|
|
|
#if os(iOS)
|
|
export["isOrientationLocked"].bool = Defaults[.isOrientationLocked]
|
|
export["enterFullscreenInLandscape"].bool = Defaults[.enterFullscreenInLandscape]
|
|
export["rotateToLandscapeOnEnterFullScreen"].string = Defaults[.rotateToLandscapeOnEnterFullScreen].rawValue
|
|
#endif
|
|
|
|
return export
|
|
}
|
|
}
|