mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-09-22 19:23:31 +00:00
d6e93e2e2b
Frontend: - Enhanced cluster vs standalone node visual distinction in Settings - Added glassmorphic style to all toast notifications for consistency - Fixed test connection in edit modal to use stored encrypted credentials - Added batch credential modal for bulk node operations - Added network discovery modal with auto-subnet detection - Improved notification system with dual toast/notification support - Added event bus for component communication Backend: - Fixed duplicate toast notifications during auto-registration - Fixed PBS auto-registration token extraction from JSON output - Added network discovery service with background scanning - Improved cluster detection with actual cluster name from API - Added helper function to reduce code duplication in cluster detection - Fixed host URL normalization in auto-registration - Enhanced PBS client token authentication parsing Bug Fixes: - Fixed stacking toast notifications creating visual bugs - Fixed PBS authentication failures after auto-registration - Fixed network discovery not finding Proxmox servers - Fixed test connection for existing nodes with encrypted tokens - Removed duplicate WebSocket broadcasts for auto-registration events
21 lines
497 B
Modula-2
21 lines
497 B
Modula-2
module github.com/rcourtman/pulse-go-rewrite
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/spf13/cobra v1.9.1
|
|
golang.org/x/crypto v0.23.0
|
|
golang.org/x/term v0.20.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/spf13/pflag v1.0.7 // indirect
|
|
golang.org/x/sys v0.20.0 // indirect
|
|
)
|