2024-09-18 08:27:46 -07:00
|
|
|
// This file is automatically generated. Do not modify it manually.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
|
|
)
|
|
|
|
|
|
|
|
var manifest *model.Manifest
|
|
|
|
|
|
|
|
const manifestStr = `
|
|
|
|
{
|
|
|
|
"id": "com.mattermost.plugin-gameStatusUpdate",
|
|
|
|
"name": "game status update",
|
|
|
|
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
|
|
|
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
|
|
|
|
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
|
2024-09-20 09:10:50 -07:00
|
|
|
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.2.1",
|
2024-09-18 08:27:46 -07:00
|
|
|
"icon_path": "assets/starter-template-icon.svg",
|
2024-09-20 09:10:50 -07:00
|
|
|
"version": "0.2.1",
|
2024-09-18 08:27:46 -07:00
|
|
|
"min_server_version": "6.2.1",
|
|
|
|
"server": {
|
|
|
|
"executables": {
|
|
|
|
"darwin-amd64": "server/dist/plugin-darwin-amd64",
|
|
|
|
"darwin-arm64": "server/dist/plugin-darwin-arm64",
|
|
|
|
"linux-amd64": "server/dist/plugin-linux-amd64",
|
|
|
|
"linux-arm64": "server/dist/plugin-linux-arm64",
|
|
|
|
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
|
|
|
|
},
|
|
|
|
"executable": ""
|
|
|
|
},
|
|
|
|
"webapp": {
|
|
|
|
"bundle_path": "webapp/dist/main.js"
|
|
|
|
},
|
|
|
|
"settings_schema": {
|
|
|
|
"header": "",
|
|
|
|
"footer": "",
|
|
|
|
"settings": []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
_ = json.NewDecoder(strings.NewReader(manifestStr)).Decode(&manifest)
|
|
|
|
}
|