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)