diff --git a/plugin.json b/plugin.json index 1052aa94..7bb9de80 100644 --- a/plugin.json +++ b/plugin.json @@ -4,31 +4,36 @@ "description": "Microsoft Calendar Integration", "homepage_url": "https://mattermost.gitbook.io/plugin-mscalendar", "support_url": "/~https://github.com/mattermost/mattermost-plugin-mscalendar/issues", - "release_notes_url": "/~https://github.com/mattermost/mattermost-plugin-mscalendar/releases/tag/v1.1.0", + "release_notes_url": "/~https://github.com/mattermost/mattermost-plugin-mscalendar/releases/tag/v1.2.0", "icon_path": "assets/profile.svg", - "version": "1.1.0", + "version": "1.2.0", "min_server_version": "5.37.0", "server": { "executables": { - "linux-amd64": "server/dist/plugin-linux-amd64", "darwin-amd64": "server/dist/plugin-darwin-amd64", + "linux-amd64": "server/dist/plugin-linux-amd64", "windows-amd64": "server/dist/plugin-windows-amd64.exe" - } + }, + "executable": "" }, "settings_schema": { "header": "", + "footer": "", "settings": [ { "key": "AdminUserIDs", "display_name": "Admin User IDs:", "type": "text", - "help_text": "List of users authorized to administer the plugin in addition to the System Admins. Must be a comma-separated list of user IDs.\n \n User IDs can be found in **System Console > User Management > Users**. Select the user's name, and the ID is displayed in the top-right corner of the banner." + "help_text": "List of users authorized to administer the plugin in addition to the System Admins. Must be a comma-separated list of user IDs.\n \n User IDs can be found in **System Console \u003e User Management \u003e Users**. Select the user's name, and the ID is displayed in the top-right corner of the banner.", + "placeholder": "", + "default": null }, { "key": "AdminLogLevel", "display_name": "Copy plugin logs to admins, as bot messages:", "type": "dropdown", "help_text": "Select the log level.", + "placeholder": "", "default": "none", "options": [ { @@ -58,19 +63,23 @@ "display_name": "Display full context for each admin log message:", "type": "bool", "help_text": "", + "placeholder": "", "default": false }, { "key": "OAuth2Authority", "display_name": "Azure Directory (tenant) ID:", "type": "text", - "help_text": "Directory (tenant) ID." + "help_text": "Directory (tenant) ID.", + "placeholder": "", + "default": null }, { "key": "OAuth2ClientId", "display_name": "Azure Application (client) ID:", "type": "text", "help_text": "Microsoft Office Client ID.", + "placeholder": "", "default": "" }, { @@ -78,6 +87,7 @@ "display_name": "Microsoft Office Client Secret:", "type": "text", "help_text": "Microsoft Office Client Secret.", + "placeholder": "", "default": "" } ] diff --git a/server/manifest.go b/server/manifest.go index 9198ea6b..bcea8e33 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -7,5 +7,5 @@ var manifest = struct { Version string }{ ID: "com.mattermost.mscalendar", - Version: "1.1.0", + Version: "1.2.0", }