Compare commits

..

2 Commits

Author SHA1 Message Date
CanbiZ (MickLesk)
a80ec67ae0 Update umbrel-os-vm.sh 2026-03-11 17:12:40 +01:00
CanbiZ (MickLesk)
1b767a9a09 Init telemetry in addon scripts
Add a guarded call to init_tool_telemetry at the top of multiple tools/addon scripts (if the function is defined) and remove the previous placeholder init_tool_telemetry "" "addon" calls later in the files. This initializes telemetry earlier with the proper tool name and avoids invoking the initializer with an empty name. Affected files include: adguardhome-sync, arcane, coolify, copyparty, cronmaster, dockge, dokploy, immich-public-proxy, jellystat, komodo, nextcloud-exporter, pihole-exporter, prometheus-paperless-ngx-exporter, qbittorrent-exporter, and runtipi.
2026-03-11 17:06:57 +01:00
3 changed files with 21 additions and 24 deletions

View File

@@ -420,15 +420,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
</details>
## 2026-03-12
## 2026-03-11
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- fix: Init telemetry in addon scripts [@MickLesk](https://github.com/MickLesk) ([#12777](https://github.com/community-scripts/ProxmoxVE/pull/12777))
- Tracearr: Increase default disk variable from 5 to 10 [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#12762](https://github.com/community-scripts/ProxmoxVE/pull/12762))
- Fix Wireguard Dashboard update [@odin568](https://github.com/odin568) ([#12767](https://github.com/community-scripts/ProxmoxVE/pull/12767))

View File

@@ -1,5 +1,5 @@
{
"generated": "2026-03-12T06:19:33Z",
"generated": "2026-03-11T12:12:40Z",
"versions": [
{
"slug": "2fauth",
@@ -151,9 +151,9 @@
{
"slug": "booklore",
"repo": "booklore-app/BookLore",
"version": "v2.2.0",
"version": "v2.1.0",
"pinned": false,
"date": "2026-03-11T14:49:57Z"
"date": "2026-03-08T20:27:24Z"
},
{
"slug": "bookstack",
@@ -270,9 +270,9 @@
{
"slug": "databasus",
"repo": "databasus/databasus",
"version": "v3.19.2",
"version": "v3.19.1",
"pinned": false,
"date": "2026-03-11T13:05:10Z"
"date": "2026-03-11T10:25:28Z"
},
{
"slug": "dawarich",
@@ -319,9 +319,9 @@
{
"slug": "donetick",
"repo": "donetick/donetick",
"version": "v0.1.74",
"version": "v0.1.75-beta.3",
"pinned": false,
"date": "2026-02-14T23:21:45Z"
"date": ""
},
{
"slug": "drawio",
@@ -620,9 +620,9 @@
{
"slug": "jackett",
"repo": "Jackett/Jackett",
"version": "v0.24.1350",
"version": "v0.24.1341",
"pinned": false,
"date": "2026-03-12T06:03:33Z"
"date": "2026-03-11T05:55:00Z"
},
{
"slug": "jellystat",
@@ -739,9 +739,9 @@
{
"slug": "leantime",
"repo": "Leantime/leantime",
"version": "v3.7.3",
"version": "v3.7.1",
"pinned": false,
"date": "2026-03-12T01:53:56Z"
"date": "2026-02-22T01:25:16Z"
},
{
"slug": "librenms",
@@ -963,9 +963,9 @@
{
"slug": "nodebb",
"repo": "NodeBB/NodeBB",
"version": "v4.9.2",
"version": "v4.9.1",
"pinned": false,
"date": "2026-03-11T15:17:32Z"
"date": "2026-03-01T20:52:43Z"
},
{
"slug": "nodecast-tv",
@@ -1362,9 +1362,9 @@
{
"slug": "scanopy",
"repo": "scanopy/scanopy",
"version": "v0.14.18",
"version": "v0.14.17",
"pinned": false,
"date": "2026-03-11T06:05:15Z"
"date": "2026-03-09T05:04:49Z"
},
{
"slug": "scraparr",
@@ -1460,9 +1460,9 @@
{
"slug": "speedtest-tracker",
"repo": "alexjustesen/speedtest-tracker",
"version": "v1.13.11",
"version": "v1.13.10",
"pinned": false,
"date": "2026-03-11T14:06:00Z"
"date": "2026-02-20T03:14:47Z"
},
{
"slug": "spoolman",
@@ -1572,9 +1572,9 @@
{
"slug": "tinyauth",
"repo": "steveiliop56/tinyauth",
"version": "v5.0.3",
"version": "v5.0.2",
"pinned": false,
"date": "2026-03-11T17:34:46Z"
"date": "2026-03-08T15:46:59Z"
},
{
"slug": "traccar",

View File

@@ -4685,10 +4685,10 @@ _setup_nvidia_gpu() {
# Format varies by driver type:
# Proprietary: "NVRM version: NVIDIA UNIX x86_64 Kernel Module 550.54.14 Thu..."
# Open: "NVRM version: NVIDIA UNIX Open Kernel Module for x86_64 590.48.01 Release..."
# Use regex to extract version number (###.##.## or ###.## pattern)
# Use regex to extract version number (###.##.## pattern)
local nvidia_host_version=""
if [[ -f /proc/driver/nvidia/version ]]; then
nvidia_host_version=$(grep -oP '\d{3,}\.\d+(\.\d+)?' /proc/driver/nvidia/version 2>/dev/null | head -1)
nvidia_host_version=$(grep -oP '\d{3,}\.\d+\.\d+' /proc/driver/nvidia/version 2>/dev/null | head -1)
fi
if [[ -z "$nvidia_host_version" ]]; then