depository-deploy 1.1.0 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "depository-deploy",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Depository document management system – deployment wizard and installers",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"publishConfig": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"scripts/publish.mjs"
|
|
26
26
|
],
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"depository-deploy-linux": "1.1.
|
|
29
|
-
"depository-deploy-macos": "1.1.
|
|
30
|
-
"depository-deploy-windows": "1.1.
|
|
28
|
+
"depository-deploy-linux": "1.1.5",
|
|
29
|
+
"depository-deploy-macos": "1.1.5",
|
|
30
|
+
"depository-deploy-windows": "1.1.5"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"start": "node wizard-server.mjs"
|
package/wizard.html
CHANGED
|
@@ -2692,6 +2692,9 @@ updateNav();
|
|
|
2692
2692
|
checkServerMode();
|
|
2693
2693
|
const restored = restoreWizardState();
|
|
2694
2694
|
if (!restored) applyOSDefaults();
|
|
2695
|
+
// Always populate the OS badge regardless of whether state was restored
|
|
2696
|
+
document.getElementById('osBadgeIcon').textContent = osProfile.icon;
|
|
2697
|
+
document.getElementById('osBadgeText').textContent = osProfile.label;
|
|
2695
2698
|
</script>
|
|
2696
2699
|
|
|
2697
2700
|
<!-- ── Terminal popup ─────────────────────────────────────── -->
|