AboutWindow // Also embed upstream license.
This commit is contained in:
parent
77d219fde8
commit
7c1dce393d
|
@ -90,8 +90,10 @@ class AppDelegate: NSWindowController, NSApplicationDelegate {
|
|||
{
|
||||
appCopyrightLabel.stringValue = copyrightLabel
|
||||
}
|
||||
if let eulaContent = Bundle.main.localizedInfoDictionary?["CFEULAContent"] as? String {
|
||||
appEULAContent.string = eulaContent
|
||||
if let eulaContent = Bundle.main.localizedInfoDictionary?["CFEULAContent"] as? String,
|
||||
let eulaContentUpstream = Bundle.main.infoDictionary?["CFUpstreamEULAContent"] as? String
|
||||
{
|
||||
appEULAContent.string = eulaContent + "\n" + eulaContentUpstream
|
||||
}
|
||||
appVersionLabel.stringValue = "\(versionString) Build \(installingVersion)"
|
||||
|
||||
|
|
|
@ -22,6 +22,34 @@
|
|||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>CFEULAContent</key>
|
||||
<string>License texts used in the customized about window.</string>
|
||||
<key>CFUpstreamEULAContent</key>
|
||||
<string>########################################################
|
||||
## UPSTREAM LICENSE PROVIDED BELOW INTACT FOR REFERENCE
|
||||
## https://github.com/openvanilla/McBopomofo/blob/5b319f491142c1170a3607e28ab4e91c22861998/LICENSE.txt
|
||||
########################################################
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2011-2022 Mengjuei Hsieh et al.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the “Software”), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.utilities</string>
|
||||
<key>LSHasLocalizedDisplayName</key>
|
||||
|
|
|
@ -31,8 +31,10 @@ class ctlAboutWindow: NSWindowController {
|
|||
{
|
||||
appCopyrightLabel.stringValue = copyrightLabel
|
||||
}
|
||||
if let eulaContent = Bundle.main.localizedInfoDictionary?["CFEULAContent"] as? String {
|
||||
appEULAContent.string = eulaContent
|
||||
if let eulaContent = Bundle.main.localizedInfoDictionary?["CFEULAContent"] as? String,
|
||||
let eulaContentUpstream = Bundle.main.infoDictionary?["CFUpstreamEULAContent"] as? String
|
||||
{
|
||||
appEULAContent.string = eulaContent + "\n" + eulaContentUpstream
|
||||
}
|
||||
appVersionLabel.stringValue = "\(versionString) Build \(installingVersion)"
|
||||
}
|
||||
|
|
|
@ -22,6 +22,34 @@
|
|||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>CFEULAContent</key>
|
||||
<string>License texts used in the customized about window.</string>
|
||||
<key>CFUpstreamEULAContent</key>
|
||||
<string>########################################################
|
||||
## UPSTREAM LICENSE PROVIDED BELOW INTACT FOR REFERENCE
|
||||
## https://github.com/openvanilla/McBopomofo/blob/5b319f491142c1170a3607e28ab4e91c22861998/LICENSE.txt
|
||||
########################################################
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2011-2022 Mengjuei Hsieh et al.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the “Software”), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
</string>
|
||||
<key>ComponentInputModeDict</key>
|
||||
<dict>
|
||||
<key>tsInputModeListKey</key>
|
||||
|
|
Loading…
Reference in New Issue