mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-28 03:27:12 +00:00
docs: add missing credits for yt-dlp, ffmpeg, and sparkle in README and About page
This commit is contained in:
@@ -85,6 +85,7 @@ Firelink stands on the shoulders of giants. A massive thank you to the contribut
|
|||||||
- **[aria2](https://aria2.github.io/)** - The legendary multi-protocol download utility driving our core engine.
|
- **[aria2](https://aria2.github.io/)** - The legendary multi-protocol download utility driving our core engine.
|
||||||
- **[yt-dlp](https://github.com/yt-dlp/yt-dlp)** - The definitive command-line audio/video downloader.
|
- **[yt-dlp](https://github.com/yt-dlp/yt-dlp)** - The definitive command-line audio/video downloader.
|
||||||
- **[FFmpeg](https://ffmpeg.org/)** - The industry standard for media stream manipulation and merging.
|
- **[FFmpeg](https://ffmpeg.org/)** - The industry standard for media stream manipulation and merging.
|
||||||
|
- **[Sparkle](https://sparkle-project.org/)** - A secure and reliable software update framework for macOS.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,9 @@ struct AboutSettingsPane: View {
|
|||||||
private let developerProfileURL = URL(string: "https://github.com/nimbold")!
|
private let developerProfileURL = URL(string: "https://github.com/nimbold")!
|
||||||
private let projectURL = URL(string: "https://github.com/nimbold/Firelink")!
|
private let projectURL = URL(string: "https://github.com/nimbold/Firelink")!
|
||||||
private let aria2URL = URL(string: "https://aria2.github.io/")!
|
private let aria2URL = URL(string: "https://aria2.github.io/")!
|
||||||
|
private let ytDlpURL = URL(string: "https://github.com/yt-dlp/yt-dlp")!
|
||||||
|
private let ffmpegURL = URL(string: "https://ffmpeg.org/")!
|
||||||
|
private let sparkleURL = URL(string: "https://sparkle-project.org/")!
|
||||||
private let licenseURL = URL(string: "https://github.com/nimbold/Firelink/blob/main/LICENSE")!
|
private let licenseURL = URL(string: "https://github.com/nimbold/Firelink/blob/main/LICENSE")!
|
||||||
|
|
||||||
private var appVersion: String {
|
private var appVersion: String {
|
||||||
@@ -253,7 +256,15 @@ struct AboutSettingsPane: View {
|
|||||||
|
|
||||||
HStack {
|
HStack {
|
||||||
Text("Powered by")
|
Text("Powered by")
|
||||||
Link("aria2", destination: aria2URL)
|
HStack(spacing: 4) {
|
||||||
|
Link("aria2", destination: aria2URL)
|
||||||
|
Text("•").foregroundStyle(.secondary)
|
||||||
|
Link("yt-dlp", destination: ytDlpURL)
|
||||||
|
Text("•").foregroundStyle(.secondary)
|
||||||
|
Link("ffmpeg", destination: ffmpegURL)
|
||||||
|
Text("•").foregroundStyle(.secondary)
|
||||||
|
Link("Sparkle", destination: sparkleURL)
|
||||||
|
}
|
||||||
Spacer()
|
Spacer()
|
||||||
Link("MIT License", destination: licenseURL)
|
Link("MIT License", destination: licenseURL)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user