Skip to content

Commit a87bfe4

Browse files
crazytanclaude
andcommitted
Add SwiftyDropbox license to Acknowledgments screen
SwiftyDropbox is MIT-licensed, which requires including the copyright notice with distributions. License text fetched directly from the upstream repo to ensure accuracy. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f5f8cc1 commit a87bfe4

2 files changed

Lines changed: 34 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424

2525
### Changes
2626
- Pending AutoFill uploads now live in the shared App Group cache/queue and are cleared if the app is uninstalled or reinstalled.
27+
- Add SwiftyDropbox to the Acknowledgments screen.
2728

2829
## v1.7.0 (2026-04-05)
2930

KeeForge/Views/AcknowledgmentsView.swift

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,16 @@ struct AcknowledgmentsView: View {
2222
} footer: {
2323
Text("CC0 1.0 Universal / Apache 2.0 (dual-licensed)")
2424
}
25+
26+
Section {
27+
Text(swiftyDropboxLicense)
28+
.font(.caption)
29+
.monospaced()
30+
} header: {
31+
Text("SwiftyDropbox")
32+
} footer: {
33+
Text("MIT License")
34+
}
2535
}
2636
.navigationTitle("Acknowledgments")
2737
.navigationBarTitleDisplayMode(.inline)
@@ -64,4 +74,27 @@ struct AcknowledgmentsView: View {
6474
- CC0 1.0 Universal : https://creativecommons.org/publicdomain/zero/1.0
6575
- Apache 2.0 : https://www.apache.org/licenses/LICENSE-2.0
6676
"""
77+
78+
private let swiftyDropboxLicense = """
79+
Copyright (c) 2015-2021 Dropbox Inc., http://www.dropbox.com/
80+
81+
Permission is hereby granted, free of charge, to any person obtaining \
82+
a copy of this software and associated documentation files (the \
83+
"Software"), to deal in the Software without restriction, including \
84+
without limitation the rights to use, copy, modify, merge, publish, \
85+
distribute, sublicense, and/or sell copies of the Software, and to \
86+
permit persons to whom the Software is furnished to do so, subject to \
87+
the following conditions:
88+
89+
The above copyright notice and this permission notice shall be \
90+
included in all copies or substantial portions of the Software.
91+
92+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, \
93+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF \
94+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND \
95+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE \
96+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION \
97+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION \
98+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
99+
"""
67100
}

0 commit comments

Comments
 (0)