diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-14 22:12:29 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-14 22:12:29 +0300 |
| commit | c070d447d6bdc6d9e002e6f3ea5aafe9e5d7fc38 (patch) | |
| tree | c9fa288a885694a5bdff2823e935aa1798799cb9 /internal | |
| parent | f90a9e0063dbe4ca06c193aec7e7469a32e0b422 (diff) | |
Release 0.4.1: drop HTML report header links; document Docker deploy in AGENTS.
Remove Dashboard/foo.zone/Report API nav from HTML output; keep foo.zone CSS and layout. Refresh HTML fixtures.
Made-with: Cursor
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/goprecords/report_format.go | 7 | ||||
| -rw-r--r-- | internal/version/version.go | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/internal/goprecords/report_format.go b/internal/goprecords/report_format.go index eb2c49c..7630564 100644 --- a/internal/goprecords/report_format.go +++ b/internal/goprecords/report_format.go @@ -48,12 +48,7 @@ func (r reportBuilder) formatReportHTML(rows []tableRow, hasLastKernel bool) str b.WriteString("<link rel=\"shortcut icon\" type=\"image/gif\" href=\"https://foo.zone/favicon.ico\" />\n") b.WriteString("<link rel=\"stylesheet\" href=\"https://foo.zone/style.css\" />\n<title>") b.WriteString(template.HTMLEscapeString(title)) - b.WriteString("</title>\n</head>\n<body>\n") - b.WriteString("<p class=\"header\">\n") - b.WriteString("<a href=\"/\">Dashboard</a> | <a href=\"https://foo.zone\">foo.zone</a> | ") - b.WriteString("<a class=\"textlink\" href=\"/report?OutputFormat=HTML&limit=") - b.WriteString(strconv.FormatUint(uint64(r.limit), 10)) - b.WriteString("\">Report API</a>\n</p>\n<h") + b.WriteString("</title>\n</head>\n<body>\n<h") b.WriteString(strconv.Itoa(hl)) b.WriteString(" style=\"display: inline\">") b.WriteString(template.HTMLEscapeString(title)) diff --git a/internal/version/version.go b/internal/version/version.go index 371f9d1..8102711 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -1,4 +1,4 @@ package version // Tag is the application release version. -const Tag = "0.4.0" +const Tag = "0.4.1" |
