Skip to content

Commit f6a54a1

Browse files
committed
Chore: Prepare for release v3.6.3
1 parent 0bd84a9 commit f6a54a1

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.env.example

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ PROXMOX_TOKEN_SECRET=your-api-token-secret-uuid
2828

2929
# --- Proxmox Backup Server (PBS) Integration (Optional) ---
3030
# Only API Token authentication is supported.
31-
# Use consecutive numbers (_2, _3, ...) for additional PBS instances (Not currently supported by Pulse)
31+
# Use consecutive numbers (_2, _3, ...) for additional PBS instances.
32+
33+
# PBS Primary Instance
3234
# PBS_HOST=your-pbs-ip-or-hostname
3335
# PBS_TOKEN_ID=your-pbs-token-id@pbs!my-token
3436
# PBS_TOKEN_SECRET=your-pbs-token-secret
@@ -41,6 +43,14 @@ PROXMOX_TOKEN_SECRET=your-api-token-secret-uuid
4143
# Optional: Set to true to allow self-signed certificates (default: true)
4244
# PBS_ALLOW_SELF_SIGNED_CERTS=true
4345

46+
# PBS Additional Instance Example (suffix with _2, _3, etc.)
47+
# PBS_HOST_2=second-pbs-ip-or-hostname
48+
# PBS_TOKEN_ID_2=second-pbs-token-id@pbs!my-token
49+
# PBS_TOKEN_SECRET_2=second-pbs-token-secret
50+
# PBS_PORT_2=8007
51+
# PBS_NODE_NAME_2=second-pbs-internal-hostname
52+
# PBS_ALLOW_SELF_SIGNED_CERTS_2=true
53+
4454
# --- Pulse Service Settings (Optional) ---
4555
# Interval in milliseconds for fetching detailed VM/Container metrics (default: 2000)
4656
# PULSE_METRIC_INTERVAL_MS=2000

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [3.6.3](https://github.com/rcourtman/Pulse/compare/v3.6.1...v3.6.3) (2024-07-25)
2+
3+
### Fixed
4+
- Node summary cards now correctly adjust their layout to fill available space when fewer than the maximum number of cards (e.g., 4) are displayed, improving responsiveness for varying node counts. This involved changes to JavaScript logic for column calculation and Tailwind CSS safelisting.
5+
6+
### Docs
7+
- Updated `README.md` and `.env.example` to accurately reflect and document support for monitoring multiple Proxmox Backup Server (PBS) instances, including configuration examples for numbered PBS variables.
8+
19
## [3.6.1](https://github.com/rcourtman/Pulse/compare/v3.6.0...v3.6.1) (2025-05-10)
210

311
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pulse",
3-
"version": "3.6.3-dev.0",
3+
"version": "3.6.3",
44
"description": "A lightweight monitoring application for Proxmox VE.",
55
"main": "server/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)