mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-16 10:16:16 +01:00
- Add new /containers route with virtualized table showing all containers across systems - Implement container stats collection (CPU, memory, network usage) with health status tracking - Add container logs and info API endpoints with syntax highlighting using Shiki - Create detailed container views with fullscreen logs/info dialogs and refresh functionality - Add container table to individual system pages with lazy loading - Implement container record storage with automatic cleanup and historical averaging - Update navbar with container navigation icon - Extract reusable ActiveAlerts component from home page - Add FooterRepoLink component for consistent GitHub/version display - Enhance filtering and search capabilities across container tables
19 lines
606 B
Go
19 lines
606 B
Go
// Package beszel provides core application constants and version information
|
|
// which are used throughout the application.
|
|
package beszel
|
|
|
|
import "github.com/blang/semver"
|
|
|
|
const (
|
|
// Version is the current version of the application.
|
|
Version = "0.14.0-alpha.2"
|
|
// AppName is the name of the application.
|
|
AppName = "beszel"
|
|
)
|
|
|
|
// MinVersionCbor is the minimum supported version for CBOR compatibility.
|
|
var MinVersionCbor = semver.MustParse("0.12.0")
|
|
|
|
// MinVersionAgentResponse is the minimum supported version for AgentResponse compatibility.
|
|
var MinVersionAgentResponse = semver.MustParse("0.13.0")
|