You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/config.md
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -400,6 +400,11 @@ See [JobHookData](data.md#jobhookdata) and [AlertHookData](data.md#alerthookdata
400
400
401
401
This section configures the multi-server subsystem.
402
402
403
+
### multi.enable_version_checks
404
+
<!-- Title: Enable Version Checks -->
405
+
406
+
When set to `true`, xyOps will check for version updates of the core app, which will make external web requests to the Release Metadata URL.
407
+
403
408
### multi.list_url
404
409
<!-- Title: Release Metadata URL -->
405
410
@@ -433,11 +438,6 @@ Default:
433
438
{ "rejectUnauthorized": false }
434
439
```
435
440
436
-
### multi.enable_version_checks
437
-
<!-- Title: Enable Version Checks -->
438
-
439
-
When set to `true`, xyOps will automatically check for version updates of the core app, and display hints in the UI.
440
-
441
441
442
442
443
443
## satellite
@@ -446,6 +446,11 @@ When set to `true`, xyOps will automatically check for version updates of the co
446
446
447
447
This section configures xySat, our remote satellite agent.
448
448
449
+
### satellite.enable_version_checks
450
+
<!-- Title: Enable Version Checks -->
451
+
452
+
When set to `true`, xyOps will check for version updates of the xySat app, which will make external web requests to the Release Metadata URL.
453
+
449
454
### satellite.list_url
450
455
<!-- Title: Release Metadata URL -->
451
456
@@ -476,11 +481,6 @@ This number (seconds) sets the cache TTL for satellite release metadata and tarb
476
481
477
482
This object contains web server and runtime settings for xySat; these options are passed along when managing or provisioning satellite nodes (defaults provided in the sample config).
478
483
479
-
### satellite.enable_version_checks
480
-
<!-- Title: Enable Version Checks -->
481
-
482
-
When set to `true`, xyOps will automatically check for version updates of the xySat app, and display hints in the UI.
This is the number of seconds to cache the marketplace metadata locally before re-fetching from origin. The default is `3600` (one hour).
523
523
524
-
### marketplace.enable_version_checks
525
-
<!-- Title: Enable Version Checks -->
526
-
527
-
When set to `true`, xyOps will automatically check for version updates of all installed marketplace plugins, and display hints in the UI.
528
-
529
524
530
525
531
526
<!-- Group: Default User Settings -->
@@ -672,6 +667,11 @@ Maximum size of job output to display inline on the details page (default: `5 MB
672
667
673
668
Requires the user to hold the Opt/Alt key to toggle the `enabled` property of certain entities in the UI (prevents accidental clicks).
674
669
670
+
### client.outdated_badges
671
+
<!-- Title: Show Outdated Version Badges -->
672
+
673
+
When set to `true`, will show a colored badge on sidebar sections for outdated software versions on the Conductors, Servers and Marketplace tabs. Admin only.
$('#tab_Marketplace').toggleClass('outdated',is_outdated).attr('title',is_outdated ? `One or more installed marketplace plugins are outdated.` : null);
'<button class="link danger" style="color:var(--red); font-weight:bold;" data-server="'+server.id+'" onClick="$P().go_nav_upgrade(this)" title="xySat version is outdated."><i class="mdi mdi-alert-rhombus"> </i>v'+server.info.satellite+'</span>'
250
+
`<button class="link outdated" data-server="${server.id}" onClick="$P().go_nav_upgrade(this)" title="A new xySat version is available (${app.latestSatVersion})."><i class="mdi mdi-alert-rhombus"> </i>v${server.info.satellite}</span>`
'<button class="link danger" style="color:var(--red); font-weight:bold;" data-server="'+server.id+'" onClick="$P().go_nav_upgrade(this)" title="xySat version is outdated."><i class="mdi mdi-alert-rhombus"> </i>v'+server.info.satellite+'</span>'
1181
+
`<button class="link outdated" data-server="${server.id}" onClick="$P().go_nav_upgrade(this)" title="A new xySat version is available (${app.latestSatVersion})."><i class="mdi mdi-alert-rhombus"> </i>v${server.info.satellite}</span>`
'<button class="link danger" style="color:var(--red); font-weight:bold;" data-host="'+item.id+'" onClick="$P().go_nav_upgrade(this)" title="xyOps version is outdated."><i class="mdi mdi-alert-rhombus"> </i>v'+item.version+'</span>'
121
+
`<button class="link outdated" data-host="${item.id}" onClick="$P().go_nav_upgrade(this)" title="A new xyOps version is available (${app.latestMasterVersion})."><i class="mdi mdi-alert-rhombus"> </i>v${item.version}</span>`
0 commit comments