changed fortnite process name
This commit is contained in:
parent
9d51116ffc
commit
53c81bb129
|
@ -213,4 +213,4 @@ Setting the `MM_DEBUG` environment variable will invoke the debug builds. The si
|
||||||
* git push origin main
|
* git push origin main
|
||||||
* git push --tags
|
* git push --tags
|
||||||
|
|
||||||
### last version commited v0.0.3
|
### last version commited v0.0.4
|
Binary file not shown.
|
@ -4,9 +4,9 @@
|
||||||
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
||||||
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
|
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
|
||||||
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
|
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
|
||||||
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.0.2",
|
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.0.3",
|
||||||
"icon_path": "assets/starter-template-icon.svg",
|
"icon_path": "assets/starter-template-icon.svg",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"min_server_version": "6.2.1",
|
"min_server_version": "6.2.1",
|
||||||
"server": {
|
"server": {
|
||||||
"executables": {
|
"executables": {
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
||||||
module github.com/mattermost/mattermost-plugin-starter-template
|
module gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate
|
||||||
|
|
||||||
go 1.21
|
go 1.21
|
||||||
|
|
||||||
|
|
|
@ -18,9 +18,9 @@ const manifestStr = `
|
||||||
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
||||||
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
|
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
|
||||||
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
|
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
|
||||||
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.0.2",
|
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.0.3",
|
||||||
"icon_path": "assets/starter-template-icon.svg",
|
"icon_path": "assets/starter-template-icon.svg",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"min_server_version": "6.2.1",
|
"min_server_version": "6.2.1",
|
||||||
"server": {
|
"server": {
|
||||||
"executables": {
|
"executables": {
|
||||||
|
|
|
@ -25,9 +25,9 @@ type Plugin struct {
|
||||||
|
|
||||||
// Known game processes
|
// Known game processes
|
||||||
var knownGames = map[string]bool{
|
var knownGames = map[string]bool{
|
||||||
"fortnite.exe": true,
|
// Add known game processes here
|
||||||
|
"FortniteClient-Win64-Shipping.exe": true,
|
||||||
"gameprocess": true,
|
"gameprocess": true,
|
||||||
// Add more known game processes here
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetActiveGame scans processes to determine the active game based on known game names
|
// GetActiveGame scans processes to determine the active game based on known game names
|
||||||
|
|
2
webapp/dist/main.js
vendored
2
webapp/dist/main.js
vendored
File diff suppressed because one or more lines are too long
|
@ -7,9 +7,9 @@ const manifest = JSON.parse(`
|
||||||
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
"description": "This plugin serves as a starting point for writing a Mattermost plugin.",
|
||||||
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
|
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
|
||||||
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
|
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
|
||||||
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.0.2",
|
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.0.3",
|
||||||
"icon_path": "assets/starter-template-icon.svg",
|
"icon_path": "assets/starter-template-icon.svg",
|
||||||
"version": "0.0.2",
|
"version": "0.0.3",
|
||||||
"min_server_version": "6.2.1",
|
"min_server_version": "6.2.1",
|
||||||
"server": {
|
"server": {
|
||||||
"executables": {
|
"executables": {
|
||||||
|
|
Loading…
Reference in a new issue