Skip to content

Commit

Permalink
Release v1.3.0 (#149)
Browse files Browse the repository at this point in the history
Co-authored-by: Mattermod <[email protected]>
  • Loading branch information
hanzei and mattermod authored Jul 18, 2022
1 parent 3282131 commit 85e789e
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 41 deletions.
88 changes: 48 additions & 40 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -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**."
}
]
}
}
2 changes: 1 addition & 1 deletion server/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var manifest = struct {
Version string
}{
ID: "mattermost-autolink",
Version: "1.2.1",
Version: "1.3.0",
}

0 comments on commit 85e789e

Please sign in to comment.