mirror of
https://github.com/nimbold/Firelink.git
synced 2026-07-26 20:18:37 +00:00
02abef1443
- Move yt-dlp and ffmpeg binaries into Sources/Firelink and update Package.swift to copy them as bundle resources. - Remove dynamic downloading logic for yt-dlp and ffmpeg from MediaEngineManager.swift and delete obsolete BinaryDownloader.swift and GatekeeperConfig.swift. - Update EngineSettingsPane.swift to remove the auto-updater UI, verify icons, and spinners. - Fix a bug where calling Add Downloads via the browser extension would open two duplicate windows by changing the window group to a single-instance Window. - Adjust minHeight of AddDownloadsView to prevent the preview section from being cut out without scrolling.
31 lines
722 B
Swift
31 lines
722 B
Swift
// swift-tools-version: 6.0
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Firelink",
|
|
platforms: [
|
|
.macOS(.v14)
|
|
],
|
|
products: [
|
|
.executable(name: "Firelink", targets: ["Firelink"])
|
|
],
|
|
dependencies: [
|
|
.package(url: "https://github.com/sparkle-project/Sparkle", from: "2.6.4")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "Firelink",
|
|
dependencies: [
|
|
.product(name: "Sparkle", package: "Sparkle")
|
|
],
|
|
path: "Sources/Firelink",
|
|
resources: [
|
|
.process("Assets.xcassets"),
|
|
.copy("yt-dlp"),
|
|
.copy("ffmpeg")
|
|
]
|
|
)
|
|
]
|
|
)
|