Skip to content

Commit

Permalink
Release v1.0.0 (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzei committed May 9, 2023
1 parent fe7ad90 commit bdb5d17
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 66 deletions.
137 changes: 75 additions & 62 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,78 @@
{
"id": "skype4business",
"name": "Skype for Business",
"description": "Skype for Business plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-skype4business",
"support_url": "https://github.com/mattermost/mattermost-plugin-skype4business/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-skype4business/releases/tag/v0.3.0",
"icon_path": "assets/profile.svg",
"version": "0.3.0",
"min_server_version": "5.10.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
"id": "skype4business",
"name": "Skype for Business",
"description": "Skype for Business plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-skype4business",
"support_url": "https://github.com/mattermost/mattermost-plugin-skype4business/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-skype4business/releases/tag/v1.0.0",
"icon_path": "assets/profile.svg",
"version": "1.0.0",
"min_server_version": "5.10.0",
"server": {
"executables": {
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"linux-amd64": "server/dist/plugin-linux-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "",
"footer": "To report an issue, make a suggestion, or submit a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-skype4business).",
"settings": [
{
"key": "productType",
"display_name": "Skype for Business Product Type:",
"type": "radio",
"help_text": "The product type of your Skype for Business instance.",
"placeholder": "",
"default": "Server",
"options": [
{
"display_name": "Server",
"value": "server"
},
{
"display_name": "Online",
"value": "online"
}
]
},
{
"key": "Username",
"display_name": "Skype for Business Bot Username:",
"type": "text",
"help_text": "Username of your selected bot account. We strongly recommend using a dedicated bot account for this plugin, rather than an existing Skype for Business user account. Only required for Skype for Business Server.",
"placeholder": "",
"default": null
},
{
"key": "Password",
"display_name": "Skype for Business Bot Password:",
"type": "text",
"help_text": "Password of your selected bot account. Only required for Skype for Business Server.",
"placeholder": "",
"default": null
},
{
"key": "Domain",
"display_name": "Server Domain:",
"type": "text",
"help_text": "The domain of your Skype for Business server instance. For example: contoso.com. Only required for Skype for Business Server.",
"placeholder": "",
"default": null
},
{
"key": "ClientId",
"display_name": "Application ID:",
"type": "text",
"help_text": "Application ID from the Azure Active Directory. Only required for Skype for Business Online. Use this URL to configure the plugin in Azure Active Directory: ```https://SITEURL/plugins/skype4business/api/v1/auth_redirect```.",
"placeholder": "",
"default": null
}
]
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"settings": [
{
"key": "productType",
"display_name": "Skype for Business Product Type:",
"type": "radio",
"help_text": "The product type of your Skype for Business instance.",
"default": "Server",
"options": [{
"display_name": "Server",
"value": "server"
}, {
"display_name": "Online",
"value": "online"
}]
},
{
"key": "Username",
"display_name": "Skype for Business Bot Username:",
"type": "text",
"help_text": "Username of your selected bot account. We strongly recommend using a dedicated bot account for this plugin, rather than an existing Skype for Business user account. Only required for Skype for Business Server."
},
{
"key": "Password",
"display_name": "Skype for Business Bot Password:",
"type": "text",
"help_text": "Password of your selected bot account. Only required for Skype for Business Server."
},
{
"key": "Domain",
"display_name": "Server Domain:",
"type": "text",
"help_text": "The domain of your Skype for Business server instance. For example: contoso.com. Only required for Skype for Business Server."
},
{
"key": "ClientId",
"display_name": "Application ID:",
"type": "text",
"help_text": "Application ID from the Azure Active Directory. Only required for Skype for Business Online. Use this URL to configure the plugin in Azure Active Directory: ```https://SITEURL/plugins/skype4business/api/v1/auth_redirect```."
}
],
"footer": "To report an issue, make a suggestion, or submit a contribution, [check the repository](https://github.com/mattermost/mattermost-plugin-skype4business)."

}
}
4 changes: 2 additions & 2 deletions server/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ const manifestStr = `
"description": "Skype for Business plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-skype4business",
"support_url": "https://github.com/mattermost/mattermost-plugin-skype4business/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-skype4business/releases/tag/v0.3.0",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-skype4business/releases/tag/v1.0.0",
"icon_path": "assets/profile.svg",
"version": "0.3.0",
"version": "1.0.0",
"min_server_version": "5.10.0",
"server": {
"executables": {
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ const manifest = JSON.parse(`
"description": "Skype for Business plugin for Mattermost.",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-skype4business",
"support_url": "https://github.com/mattermost/mattermost-plugin-skype4business/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-skype4business/releases/tag/v0.3.0",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-skype4business/releases/tag/v1.0.0",
"icon_path": "assets/profile.svg",
"version": "0.3.0",
"version": "1.0.0",
"min_server_version": "5.10.0",
"server": {
"executables": {
Expand Down

0 comments on commit bdb5d17

Please sign in to comment.