From 85e789e73b849cfc0dbdc457d942712e842a2a5d Mon Sep 17 00:00:00 2001 From: Ben Schumacher Date: Mon, 18 Jul 2022 20:06:10 +0200 Subject: [PATCH] Release v1.3.0 (#149) Co-authored-by: Mattermod --- plugin.json | 88 +++++++++++++++++++++++++--------------------- server/manifest.go | 2 +- 2 files changed, 49 insertions(+), 41 deletions(-) diff --git a/plugin.json b/plugin.json index ee7ea5de..d9248bb6 100644 --- a/plugin.json +++ b/plugin.json @@ -1,43 +1,51 @@ { - "id": "mattermost-autolink", - "name": "Autolink", - "description": "Automatically rewrite text matching a regular expression into a Markdown link.", - "homepage_url": "https://github.com/mattermost/mattermost-plugin-autolink", - "support_url": "https://github.com/mattermost/mattermost-plugin-autolink/issues", - "release_notes_url": "https://github.com/mattermost/mattermost-plugin-autolink/releases/tag/v1.2.1", - "icon_path": "assets/icon.svg", - "version": "1.2.1", - "min_server_version": "5.37.0", - "server": { - "executables": { - "linux-amd64": "server/dist/plugin-linux-amd64", - "linux-arm64": "server/dist/plugin-linux-arm64", - "darwin-amd64": "server/dist/plugin-darwin-amd64", - "darwin-arm64": "server/dist/plugin-darwin-arm64", - "windows-amd64": "server/dist/plugin-windows-amd64.exe" + "id": "mattermost-autolink", + "name": "Autolink", + "description": "Automatically rewrite text matching a regular expression into a Markdown link.", + "homepage_url": "https://github.com/mattermost/mattermost-plugin-autolink", + "support_url": "https://github.com/mattermost/mattermost-plugin-autolink/issues", + "release_notes_url": "https://github.com/mattermost/mattermost-plugin-autolink/releases/tag/v1.3.0", + "icon_path": "assets/icon.svg", + "version": "1.3.0", + "min_server_version": "5.16.0", + "server": { + "executables": { + "linux-amd64": "server/dist/plugin-linux-amd64", + "linux-arm64": "server/dist/plugin-linux-arm64", + "darwin-amd64": "server/dist/plugin-darwin-amd64", + "darwin-arm64": "server/dist/plugin-darwin-arm64", + "windows-amd64": "server/dist/plugin-windows-amd64.exe" + }, + "executable": "" + }, + "settings_schema": { + "header": "Configure this plugin directly in the `config.json` file, or using the `/autolink` command. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-autolink/blob/master/README.md).\n\n To report an issue, make a suggestion, or contribute, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-autolink).", + "footer": "", + "settings": [ + { + "key": "enableadmincommand", + "display_name": "Enable administration with /autolink command:", + "type": "bool", + "help_text": "", + "placeholder": "", + "default": true + }, + { + "key": "enableonupdate", + "display_name": "Apply plugin to updated posts as well as new posts:", + "type": "bool", + "help_text": "", + "placeholder": "", + "default": false + }, + { + "key": "pluginadmins", + "display_name": "Admin User IDs:", + "type": "text", + "help_text": "Comma-separated list of user IDs authorized to administer the plugin in addition to the System Admins.\n \n User IDs can be found by navigating to **System Console \u003e User Management \u003e Users**.", + "placeholder": "", + "default": null + } + ] } - }, - "settings_schema": { - "header": "Configure this plugin directly in the `config.json` file, or using the `/autolink` command. Learn more [in our documentation](https://github.com/mattermost/mattermost-plugin-autolink/blob/master/README.md).\n\n To report an issue, make a suggestion, or contribute, [check the plugin repository](https://github.com/mattermost/mattermost-plugin-autolink).", - "settings": [ - { - "key": "enableadmincommand", - "display_name": "Enable administration with /autolink command:", - "type": "bool", - "default": true - }, - { - "key": "enableonupdate", - "display_name": "Apply plugin to updated posts as well as new posts:", - "type": "bool", - "default": false - }, - { - "key": "pluginadmins", - "display_name": "Admin User IDs:", - "type": "text", - "help_text": "Comma-separated list of user IDs authorized to administer the plugin in addition to the System Admins.\n \n User IDs can be found by navigating to **System Console > User Management > Users**." - } - ] - } } diff --git a/server/manifest.go b/server/manifest.go index 19719e28..d6ab6537 100644 --- a/server/manifest.go +++ b/server/manifest.go @@ -7,5 +7,5 @@ var manifest = struct { Version string }{ ID: "mattermost-autolink", - Version: "1.2.1", + Version: "1.3.0", }