1 Commits

Author SHA1 Message Date
dcff1f5dd2 v0.1.6: Rebuild with updated fw_plugin_api.pas (SessionSetNodeStatus)
All checks were successful
Build & Release Plugin / build (push) Successful in 14s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-14 20:18:42 -07:00
3 changed files with 3 additions and 2 deletions

View File

@@ -236,6 +236,7 @@ type
procedure SessionReleaseNode(ANodeID: Integer);
procedure SessionSetNodeUser(ANodeID: Integer; const AUsername: string; AUserID: Integer);
procedure SessionSetNodeAddress(ANodeID: Integer; const AAddress: string);
procedure SessionSetNodeStatus(ANodeID: Integer; const AStatus: string);
// Protocol detection (thin client only — stubs on primary server)
// Transport plugins call these to discover and dispatch to protocol detectors.

View File

@@ -1,6 +1,6 @@
{
"name": "webui",
"version": "0.1.5",
"version": "0.1.6",
"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

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