2021-04-12 23:02:22 +02:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
// See LICENSE.txt for license information.
|
|
|
|
|
|
|
|
import Cocoa
|
|
|
|
|
|
|
|
class WhatsNewViewController:
|
|
|
|
NSViewController {
|
|
|
|
@IBOutlet var textView: NSTextView!
|
|
|
|
@IBOutlet var rateButton: NSButton!
|
|
|
|
|
|
|
|
override func viewDidLoad() {
|
|
|
|
super.viewDidLoad()
|
2021-11-16 19:54:54 +01:00
|
|
|
loadText()
|
|
|
|
}
|
|
|
|
|
|
|
|
private func loadText() {
|
|
|
|
guard let fileUrl = Bundle.main.url(forResource: "whatsnew", withExtension: "txt") else { assertionFailure("whatsnew"); return }
|
|
|
|
guard let text = try? String(contentsOf: fileUrl, encoding: .utf8) else { assertionFailure("whatsnew"); return }
|
|
|
|
|
|
|
|
textView.string = text
|
|
|
|
textView.textStorage?.font = NSFont.systemFont(ofSize: 13)
|
|
|
|
textView.textStorage?.foregroundColor = NSColor.textColor
|
2021-04-12 23:02:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@IBAction func rateButtonClicked(_ sender: Any) {
|
|
|
|
let url = URL(string: "macappstore://itunes.apple.com/app/id1556908618?action=write-review")!
|
|
|
|
NSWorkspace.shared.open(url)
|
|
|
|
view.window?.close()
|
|
|
|
}
|
|
|
|
|
|
|
|
@IBAction func closeButtonClicked(_ sender: Any) {
|
|
|
|
view.window?.close()
|
|
|
|
}
|
|
|
|
}
|