From 3e9670a5df7f21227ea54cdf57aa72cf44c3ec7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Espino=20Garc=C3=ADa?= Date: Mon, 7 Sep 2020 13:22:39 +0200 Subject: [PATCH] Bump version to 0.4.0 --- plugin.json | 4 ++-- server/manifest.go | 14 ++++++++++++-- webapp/src/manifest.js | 14 ++++++++++++-- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/plugin.json b/plugin.json index 7706319c..44893625 100644 --- a/plugin.json +++ b/plugin.json @@ -4,8 +4,8 @@ "description": "This plugin makes it easy to keep track of Todo issues and get daily reminders.", "homepage_url": "https://github.com/mattermost/mattermost-plugin-todo", "support_url": "https://github.com/mattermost/mattermost-plugin-todo/issues", - "release_notes_url": "https://github.com/mattermost/mattermost-plugin-todo/releases/tag/v0.3.0", - "version": "0.3.0", + "release_notes_url": "https://github.com/mattermost/mattermost-plugin-todo/releases/tag/v0.4.0", + "version": "0.4.0", "min_server_version": "5.12.0", "server": { "executables": { diff --git a/server/manifest.go b/server/manifest.go index d161b835..dfc791d4 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -17,7 +17,8 @@ const manifestStr = ` "description": "This plugin makes it easy to keep track of Todo issues and get daily reminders.", "homepage_url": "https://github.com/mattermost/mattermost-plugin-todo", "support_url": "https://github.com/mattermost/mattermost-plugin-todo/issues", - "version": "0.3.0", + "release_notes_url": "https://github.com/mattermost/mattermost-plugin-todo/releases/tag/v0.4.0", + "version": "0.4.0", "min_server_version": "5.12.0", "server": { "executables": { @@ -33,7 +34,16 @@ const manifestStr = ` "settings_schema": { "header": "", "footer": "", - "settings": [] + "settings": [ + { + "key": "hide_team_sidebar", + "display_name": "Hide team sidebar buttons", + "type": "bool", + "help_text": "When true, the buttons in the team sidebar on the left toolbar will be hidden.", + "placeholder": "", + "default": null + } + ] } } ` diff --git a/webapp/src/manifest.js b/webapp/src/manifest.js index 2c7c390f..36e164cc 100644 --- a/webapp/src/manifest.js +++ b/webapp/src/manifest.js @@ -7,7 +7,8 @@ const manifest = JSON.parse(` "description": "This plugin makes it easy to keep track of Todo issues and get daily reminders.", "homepage_url": "https://github.com/mattermost/mattermost-plugin-todo", "support_url": "https://github.com/mattermost/mattermost-plugin-todo/issues", - "version": "0.3.0", + "release_notes_url": "https://github.com/mattermost/mattermost-plugin-todo/releases/tag/v0.4.0", + "version": "0.4.0", "min_server_version": "5.12.0", "server": { "executables": { @@ -23,7 +24,16 @@ const manifest = JSON.parse(` "settings_schema": { "header": "", "footer": "", - "settings": [] + "settings": [ + { + "key": "hide_team_sidebar", + "display_name": "Hide team sidebar buttons", + "type": "bool", + "help_text": "When true, the buttons in the team sidebar on the left toolbar will be hidden.", + "placeholder": "", + "default": null + } + ] } } `);