changed router to use IPv4

This commit is contained in:
aaron 2024-11-05 05:29:32 -08:00
parent 8b971fe8aa
commit e5e9458f6a
18 changed files with 10 additions and 10 deletions

View file

@ -4,9 +4,9 @@
"description": "this plugin will update statuses to show what game is being played - fuck discord",
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.2.8",
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.2.9",
"icon_path": "assets/starter-template-icon.svg",
"version": "0.2.9",
"version": "0.2.10",
"min_server_version": "6.2.1",
"server": {
"executables": {

File diff suppressed because one or more lines are too long

View file

@ -1,7 +1,7 @@
{
"id": "com.mattermost.gameStatusUpdate",
"name": "game status update",
"version": "0.2.9",
"version": "0.2.10",
"description": "this plugin will update statuses to show what game is being played - fuck discord",
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -18,9 +18,9 @@ const manifestStr = `
"description": "this plugin will update statuses to show what game is being played - fuck discord",
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.2.8",
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.2.9",
"icon_path": "assets/starter-template-icon.svg",
"version": "0.2.9",
"version": "0.2.10",
"min_server_version": "6.2.1",
"server": {
"executables": {

View file

@ -16,7 +16,7 @@ func InitRoutes(p *Plugin) http.Handler {
// StartHTTPServer starts the HTTP server on a specific port
func StartHTTPServer(p *Plugin) {
httpServer := &http.Server{
Addr: ":8780",
Addr: "0.0.0.0:8780",
Handler: p.apiRouter,
}

2
webapp/dist/main.js vendored

File diff suppressed because one or more lines are too long

View file

@ -7,9 +7,9 @@ const manifest = JSON.parse(`
"description": "this plugin will update statuses to show what game is being played - fuck discord",
"homepage_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate",
"support_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdate/issues",
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.2.8",
"release_notes_url": "https://gitlab.peanutsmediaserver.com/aaron/gameStatusUpdatereleases/tag/v0.2.9",
"icon_path": "assets/starter-template-icon.svg",
"version": "0.2.9",
"version": "0.2.10",
"min_server_version": "6.2.1",
"server": {
"executables": {