mirror of
https://github.com/yattee/yattee.git
synced 2026-06-04 22:04:19 +00:00
Description links to YouTube videos, channels, playlists, and external video URLs now open in Yattee instead of Safari. When a video is already playing, tapping a video link surfaces the existing QueueActionSheet (Play Now / Play Next / Add to Queue) — the sheet is hosted both at the app root and inside ExpandedPlayerSheet so it appears above whichever layer is on screen.
15 lines
345 B
Swift
15 lines
345 B
Swift
//
|
|
// Notifications.swift
|
|
// Yattee
|
|
//
|
|
// App-wide notification names.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Notification.Name {
|
|
static let showSettings = Notification.Name("showSettings")
|
|
static let showOpenLinkSheet = Notification.Name("showOpenLinkSheet")
|
|
static let openDescriptionLink = Notification.Name("openDescriptionLink")
|
|
}
|