focalboard/mac/Focalboard/Globals.swift
Chen-I Lim abee212d4c
Fix #1839. Update Mac App for v0.10.0 (#1842)
* Fix #1839. Update Mac App for v0.10.0

* Update what's new text
2021-11-16 10:54:54 -08:00

15 lines
419 B
Swift

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import Foundation
class Globals {
static let ProductVersion = 01000
static let WhatsNewVersion = 01000
static var currentWhatsNewVersion: Int {
get { return UserDefaults.standard.integer(forKey: "whatsNewVersion") }
set { UserDefaults.standard.setValue(newValue, forKey: "whatsNewVersion") }
}
}