From 35d8332d9c702ea121bcca475e72920980473c75 Mon Sep 17 00:00:00 2001 From: Daniel Legt Date: Fri, 28 Aug 2026 13:30:12 +0300 Subject: [PATCH] Update project references from "System Monitor Agent" to "win64_mp" throughout the codebase, including changes to executable names, comments, and documentation for improved clarity and consistency. --- .gitignore | 2 +- README.md | 2 +- lib/agent/agent.go | 2 +- lib/agent/web/index.html | 4 ++-- lib/config/config.go | 8 ++++---- lib/install/install.go | 2 +- lib/install/install_test.go | 4 ++-- lib/openapi/spec.go | 4 ++-- main.go | 6 +++--- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index fb741ba..63367b4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # Build output -/SystemMonitorAgent.exe +/win64_mp.exe *.exe *.exe~ *.dll diff --git a/README.md b/README.md index 4ed0437..f3dea94 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ ``` -GOOS=windows GOARCH=amd64 go build -ldflags "-s -w" -o SystemMonitorAgent.exe . +GOOS=windows GOARCH=amd64 go build -ldflags "-s -w" -o win64_mp.exe . ``` \ No newline at end of file diff --git a/lib/agent/agent.go b/lib/agent/agent.go index f0082f4..b7d9a84 100644 --- a/lib/agent/agent.go +++ b/lib/agent/agent.go @@ -98,7 +98,7 @@ func (a *Agent) Serve() error { return fmt.Errorf("listen %s: %w", a.addr, err) } - fmt.Printf("System Monitor Agent %s\nListening on http://%s\nPress Ctrl+C to stop.\n", config.Version, a.addr) + fmt.Printf("win64_mp %s\nListening on http://%s\nPress Ctrl+C to stop.\n", config.Version, a.addr) ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt) defer stop() diff --git a/lib/agent/web/index.html b/lib/agent/web/index.html index cdaa8f8..86694d8 100644 --- a/lib/agent/web/index.html +++ b/lib/agent/web/index.html @@ -3,7 +3,7 @@ - System Monitor Agent + win64_mp