mirror of
https://github.com/nimbold/Firelink.git
synced 2026-07-26 12:08:27 +00:00
6b2901bd50
- Update Sparkle dependency to 2.9.3 - Replace brittle HTML parsing with native NSAttributedString parsing - Fix dangling updater callbacks by handling view disappear events - Add 'Remind Me Later' button in update prompt - Add toggle for automatic background update checks
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.9.3")
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "Firelink",
|
|
dependencies: [
|
|
.product(name: "Sparkle", package: "Sparkle")
|
|
],
|
|
path: "Sources/Firelink",
|
|
resources: [
|
|
.process("Assets.xcassets"),
|
|
.copy("yt-dlp"),
|
|
.copy("ffmpeg")
|
|
]
|
|
)
|
|
]
|
|
)
|