Skip to content

Commit 4353ed5

Browse files
committed
Bump version to 1.3.0
1 parent 75c6019 commit 4353ed5

File tree

2 files changed

+47
-39
lines changed

2 files changed

+47
-39
lines changed

plugin.json

Lines changed: 46 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,49 @@
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.16.0",
11-
"server": {
12-
"executables": {
13-
"linux-amd64": "server/dist/plugin-linux-amd64",
14-
"darwin-amd64": "server/dist/plugin-darwin-amd64",
15-
"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+
"darwin-amd64": "server/dist/plugin-darwin-amd64",
15+
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
16+
},
17+
"executable": ""
18+
},
19+
"settings_schema": {
20+
"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).",
21+
"footer": "",
22+
"settings": [
23+
{
24+
"key": "EnableAdminCommand",
25+
"display_name": "Enable administration with /autolink command:",
26+
"type": "bool",
27+
"help_text": "",
28+
"placeholder": "",
29+
"default": true
30+
},
31+
{
32+
"key": "EnableOnUpdate",
33+
"display_name": "Apply plugin to updated posts as well as new posts:",
34+
"type": "bool",
35+
"help_text": "",
36+
"placeholder": "",
37+
"default": false
38+
},
39+
{
40+
"key": "PluginAdmins",
41+
"display_name": "Admin User IDs:",
42+
"type": "text",
43+
"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**.",
44+
"placeholder": "",
45+
"default": null
46+
}
47+
]
1648
}
17-
},
18-
"settings_schema": {
19-
"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).",
20-
"settings": [
21-
{
22-
"key": "EnableAdminCommand",
23-
"display_name": "Enable administration with /autolink command:",
24-
"type": "bool",
25-
"default": true
26-
},
27-
{
28-
"key": "EnableOnUpdate",
29-
"display_name": "Apply plugin to updated posts as well as new posts:",
30-
"type": "bool",
31-
"default": false
32-
},
33-
{
34-
"key": "PluginAdmins",
35-
"display_name": "Admin User IDs:",
36-
"type": "text",
37-
"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**."
38-
}
39-
]
40-
}
4149
}

server/manifest.go

Lines changed: 1 addition & 1 deletion
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)