2 Commits

Author SHA1 Message Date
e0de3433c7 v0.1.5: Replace hardcoded version with {{VERSION}} template variable
All checks were successful
Build & Release Plugin / build (push) Successful in 18s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 13:39:37 -07:00
fd4a38b7a9 Replace hardcoded version with {{VERSION}} template variable
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-12 11:31:18 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "webui",
"version": "0.1.4",
"version": "0.1.5",
"api_version": 1,
"description": "Web-based thin client for Fastway BBS - browser access to BBS features",
"short_description": "Web-based BBS thin client",

View File

@@ -12,7 +12,7 @@
<nav class="navbar">
<div>
<span class="navbar-brand">Fastway BBS</span>
<span class="version">v0.2.0</span>
<span class="version">{{VERSION}}</span>
</div>
<ul class="navbar-nav">
<li><a href="/messages.html" class="active">Messages</a></li>

View File

@@ -17,7 +17,7 @@ uses
fw_plugin_api;
const
WEBUI_VERSION = '0.1.4';
WEBUI_VERSION = '0.1.5';
SESSION_COOKIE = 'fw_session';
DEFAULT_PORT = 8888;
SESSION_MAX_AGE = 86400; { 24 hours }