diff --git a/lib/www/client/source/src/components/help-dialog.vue b/lib/www/client/source/src/components/help-dialog.vue index 1f3ca6e..fee2cfa 100644 --- a/lib/www/client/source/src/components/help-dialog.vue +++ b/lib/www/client/source/src/components/help-dialog.vue @@ -44,7 +44,16 @@ -
{{ versionHistory }}
+ + +
{{release}}
+
+
@@ -127,6 +136,8 @@ export default { clientVersion: process.env.DOUGAL_FRONTEND_VERSION ?? "(unknown)", serverVersion: null, versionHistory: null, + releaseHistory: [], + releaseShown: null, page: "support" }; }, @@ -138,7 +149,8 @@ export default { this.serverVersion = version?.tag ?? "(unknown)"; } if (!this.versionHistory) { - const history = await this.api(['/version/history?count=1', {}, null, {silent:true}]); + const history = await this.api(['/version/history?count=3', {}, null, {silent:true}]); + this.releaseHistory = history; this.versionHistory = history?.[this.serverVersion.replace(/-.*$/, "")] ?? null; } },