Update to v0.12 (#1904)
This commit is contained in:
parent
334d45969d
commit
ed2c916afa
10 changed files with 12 additions and 11 deletions
|
@ -4,7 +4,7 @@
|
|||
import Foundation
|
||||
|
||||
class Globals {
|
||||
static let ProductVersion = 01100
|
||||
static let ProductVersion = 01200
|
||||
static let WhatsNewVersion = 01100
|
||||
|
||||
static var currentWhatsNewVersion: Int {
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.11.0</string>
|
||||
<string>0.12.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"support_url": "https://github.com/mattermost/focalboard/issues",
|
||||
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
||||
"icon_path": "assets/starter-template-icon.svg",
|
||||
"version": "0.11.0",
|
||||
"version": "0.12.0",
|
||||
"min_server_version": "6.0.0",
|
||||
"server": {
|
||||
"executables": {
|
||||
|
|
2
mattermost-plugin/server/manifest.go
generated
2
mattermost-plugin/server/manifest.go
generated
|
@ -20,7 +20,7 @@ const manifestStr = `
|
|||
"support_url": "https://github.com/mattermost/focalboard/issues",
|
||||
"release_notes_url": "https://github.com/mattermost/focalboard/releases",
|
||||
"icon_path": "assets/starter-template-icon.svg",
|
||||
"version": "0.11.0",
|
||||
"version": "0.12.0",
|
||||
"min_server_version": "6.0.0",
|
||||
"server": {
|
||||
"executables": {
|
||||
|
|
|
@ -4,6 +4,7 @@ package model
|
|||
// It should be maintained in chronological order with most current
|
||||
// release at the front of the list.
|
||||
var versions = []string{
|
||||
"0.12.0",
|
||||
"0.11.0",
|
||||
"0.10.0",
|
||||
"0.9.4",
|
||||
|
|
|
@ -10,7 +10,7 @@ exports[`components/sidebar/GlobalHeader header menu should match snapshot 1`] =
|
|||
/>
|
||||
<a
|
||||
class="GlobalHeaderComponent__button help-button"
|
||||
href="https://www.focalboard.com/fwlink/doc-boards.html?v=0.11.0"
|
||||
href="https://www.focalboard.com/fwlink/doc-boards.html?v=0.12.0"
|
||||
rel="noreferrer"
|
||||
target="_blank"
|
||||
>
|
||||
|
|
|
@ -52,7 +52,7 @@ exports[`components/sidebarSidebar global templates 1`] = `
|
|||
<div
|
||||
class="version"
|
||||
>
|
||||
v0.11.0
|
||||
v0.12.0
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -236,7 +236,7 @@ exports[`components/sidebarSidebar sidebar hidden 1`] = `
|
|||
<div
|
||||
class="version"
|
||||
>
|
||||
v0.11.0
|
||||
v0.12.0
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -610,7 +610,7 @@ exports[`components/sidebarSidebar sidebar in dashboard page 1`] = `
|
|||
<div
|
||||
class="version"
|
||||
>
|
||||
v0.11.0
|
||||
v0.12.0
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -19,7 +19,7 @@ class Constants {
|
|||
static readonly defaultTitleColumnWidth = 280
|
||||
static readonly titleColumnId = '__title'
|
||||
|
||||
static readonly versionString = '0.11.0'
|
||||
static readonly versionString = '0.12.0'
|
||||
|
||||
static readonly languages = [
|
||||
{
|
||||
|
|
|
@ -55,7 +55,7 @@ exports[`pages/dashboard/DashboardPage base case 1`] = `
|
|||
<div
|
||||
class="version"
|
||||
>
|
||||
v0.11.0
|
||||
v0.12.0
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
||||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
||||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
|
||||
<Identity Name="MattermostInc.Focalboard" Publisher="CN=5C59534D-C37D-4D0C-8464-26AA0D0B6EFE" Version="0.11.0.0" ProcessorArchitecture="x64" />
|
||||
<Identity Name="MattermostInc.Focalboard" Publisher="CN=5C59534D-C37D-4D0C-8464-26AA0D0B6EFE" Version="0.12.0.0" ProcessorArchitecture="x64" />
|
||||
<Properties>
|
||||
<DisplayName>Focalboard</DisplayName>
|
||||
<PublisherDisplayName>Mattermost, Inc.</PublisherDisplayName>
|
||||
|
|
Loading…
Reference in a new issue