Skip to content

Commit 7dd0561

Browse files
v3.6.0
1 parent 031554e commit 7dd0561

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v3.6.0
2+
- Merged pull request adding cloud init user data option for new containers via form
3+
- Fixed typo preventing OS version number from showing in remotes-single.php page, under LXD Information
4+
15
# v3.5.0
26
- Updated container image catalog based on results from from https://us.lxd.images
37
- Merged pull request updating MySQL statements for auto increment and now time

lxd-dashboard/backend/config/about.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<body class="">
4444
<p>The open source LXD Dashboard is developed by LXDWARE and provides a web-based user interface capable of managing multiple LXD servers from a single location.</p>
4545
<p>
46-
<strong>Version</strong>: <span id="versionNumber">v3.5.0</span> <br />
46+
<strong>Version</strong>: <span id="versionNumber">v3.6.0</span> <br />
4747
<strong>License</strong>: AGPL-3.0 <br />
4848
<strong>URL</strong>: https://lxdware.com <br />
4949
</p>

lxd-dashboard/remotes-single.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,7 @@ function loadPageContent(){
804804
$("#kernelArchitecture").text(stats.kernelArchitecture);
805805
$("#kernelVersion").text(stats.kernelVersion);
806806
$("#osName").text(stats.osName);
807-
$("#osVersion").css("width", stats.osVersion)
807+
$("#osVersion").text(stats.osVersion)
808808
809809
$("#serverVersion").text(stats.serverVersion);
810810

0 commit comments

Comments
 (0)