Skip to content

Commit 85e789e

Browse files
hanzeimattermod
andauthored
Release v1.3.0 (#149)
Co-authored-by: Mattermod <[email protected]>
1 parent 3282131 commit 85e789e

File tree

2 files changed

+49
-41
lines changed

2 files changed

+49
-41
lines changed

plugin.json

+48-40
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,51 @@
11
{
2-
"id": "mattermost-autolink",
3-
"name": "Autolink",
4-
"description": "Automatically rewrite text matching a regular expression into a Markdown link.",
5-
"homepage_url": "https://github.com/mattermost/mattermost-plugin-autolink",
6-
"support_url": "https://github.com/mattermost/mattermost-plugin-autolink/issues",
7-
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-autolink/releases/tag/v1.2.1",
8-
"icon_path": "assets/icon.svg",
9-
"version": "1.2.1",
10-
"min_server_version": "5.37.0",
11-
"server": {
12-
"executables": {
13-
"linux-amd64": "server/dist/plugin-linux-amd64",
14-
"linux-arm64": "server/dist/plugin-linux-arm64",
15-
"darwin-amd64": "server/dist/plugin-darwin-amd64",
16-
"darwin-arm64": "server/dist/plugin-darwin-arm64",
17-
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
2+
"id": "mattermost-autolink",
3+
"name": "Autolink",
4+
"description": "Automatically rewrite text matching a regular expression into a Markdown link.",
5+
"homepage_url": "https://github.com/mattermost/mattermost-plugin-autolink",
6+
"support_url": "https://github.com/mattermost/mattermost-plugin-autolink/issues",
7+
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-autolink/releases/tag/v1.3.0",
8+
"icon_path": "assets/icon.svg",
9+
"version": "1.3.0",
10+
"min_server_version": "5.16.0",
11+
"server": {
12+
"executables": {
13+
"linux-amd64": "server/dist/plugin-linux-amd64",
14+
"linux-arm64": "server/dist/plugin-linux-arm64",
15+
"darwin-amd64": "server/dist/plugin-darwin-amd64",
16+
"darwin-arm64": "server/dist/plugin-darwin-arm64",
17+
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
18+
},
19+
"executable": ""
20+
},
21+
"settings_schema": {
22+
"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).",
23+
"footer": "",
24+
"settings": [
25+
{
26+
"key": "enableadmincommand",
27+
"display_name": "Enable administration with /autolink command:",
28+
"type": "bool",
29+
"help_text": "",
30+
"placeholder": "",
31+
"default": true
32+
},
33+
{
34+
"key": "enableonupdate",
35+
"display_name": "Apply plugin to updated posts as well as new posts:",
36+
"type": "bool",
37+
"help_text": "",
38+
"placeholder": "",
39+
"default": false
40+
},
41+
{
42+
"key": "pluginadmins",
43+
"display_name": "Admin User IDs:",
44+
"type": "text",
45+
"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**.",
46+
"placeholder": "",
47+
"default": null
48+
}
49+
]
1850
}
19-
},
20-
"settings_schema": {
21-
"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).",
22-
"settings": [
23-
{
24-
"key": "enableadmincommand",
25-
"display_name": "Enable administration with /autolink command:",
26-
"type": "bool",
27-
"default": true
28-
},
29-
{
30-
"key": "enableonupdate",
31-
"display_name": "Apply plugin to updated posts as well as new posts:",
32-
"type": "bool",
33-
"default": false
34-
},
35-
{
36-
"key": "pluginadmins",
37-
"display_name": "Admin User IDs:",
38-
"type": "text",
39-
"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**."
40-
}
41-
]
42-
}
4351
}

server/manifest.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ var manifest = struct {
77
Version string
88
}{
99
ID: "mattermost-autolink",
10-
Version: "1.2.1",
10+
Version: "1.3.0",
1111
}

0 commit comments

Comments
 (0)