Rename the collector-picker concept to 'collector' throughout the frontend so it no longer collides with the ipng_source_tag group-by (which is labelled 'source'). Affects PageData.Collector, the raw JSON output key, template labels, and tests. Proto Source field is untouched (wire-level name used by CLI and aggregator too). Shrink tab padding/gap/font-size and add window:/filter: labels so the four tab rows (window, filter, collector, tor) line up and 7+ collectors fit on one line at the 1100px body width. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
17 lines
398 B
Go
17 lines
398 B
Go
// Package version exposes the build-time version metadata injected via
|
|
// -ldflags -X. The defaults apply to unversioned builds (e.g. plain `go run`).
|
|
package version
|
|
|
|
import "fmt"
|
|
|
|
var (
|
|
Version = "0.9.2"
|
|
Commit = "unknown"
|
|
Date = "unknown"
|
|
)
|
|
|
|
// String returns "Version (commit C, built D)".
|
|
func String() string {
|
|
return fmt.Sprintf("%s (commit %s, built %s)", Version, Commit, Date)
|
|
}
|