From af57f1a49d98fa4d99255e771bc2ed64d1830268 Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Tue, 20 Jan 2026 12:47:58 -0500 Subject: [PATCH] change the not found content --- modules/server/server.go | 8 +++++++- modules/version/version.go | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/server/server.go b/modules/server/server.go index 31fc9a8..b51ffc2 100644 --- a/modules/server/server.go +++ b/modules/server/server.go @@ -40,7 +40,13 @@ func Start(dir string) { err = readArchive(w, route) } else { w.WriteHeader(http.StatusNotFound) - w.Write([]byte("not found :(")) + w.Write([]byte(` +404 Not Found + +

404 Not Found

+
fes
+ +`)) } return } diff --git a/modules/version/version.go b/modules/version/version.go index 338b932..dc51cfe 100644 --- a/modules/version/version.go +++ b/modules/version/version.go @@ -9,7 +9,7 @@ var gitCommit string = "devel" const PROGRAM_NAME string = "fes" const PROGRAM_NAME_LONG string = "fes/fSD" -const VERSION string = "1.0.1" +const VERSION string = "1.1.0" func Version() { fmt.Printf("%s version %s\n", PROGRAM_NAME_LONG, VERSION)