-
released this
2026-05-08 15:19:21 -04:00 | 0 commits to main since this releaseTested against: WHMCS 9.0.3 and VirtFusion v7.0.0 Build 9.
Features
-
In-page section navigation in the WHMCS Actions sidebar. Customers viewing a VirtFusion service get an "On This Page" group in the sidebar with jump-links to every visible panel (Overview, Traffic, Live Stats, Power, Manage, Rebuild, Reverse DNS, Resources, Billing & Usage, Billing Overview). Rendered server-side via a
ClientAreaPrimarySidebarhook that's gated to productdetails pages for VF services only — no impact on other modules. Each link smooth-scrolls to its target via a delegated click handler. Conditionally-shown panels (Live Stats when remoteState is unavailable, Reverse DNS when PowerDNS isn't configured, Resources/Self-Service before their data loads) auto-hide their corresponding sidebar links so customers don't see dead jumps. VNC is intentionally excluded — its panel is the first thing on the page already. Theme-agnostic — WHMCS handles sidebar rendering for Six, Twenty-One, Lagom, etc. -
Traffic chart panel showing the last 12 months of monthly aggregates. New panel between Server Overview and Power Management, sourced from
/servers/{id}/traffic'smonthly[]array. Renders side-by-side rx (blue) and tx (green) bars per month with month-or-month/year labels at the bottom and a centered legend with breathing room. Current period's used/limit/remaining tile sits below the chart. Replaces the previously broken in-resources chart that read non-existentdata.entries/data.usedpaths and silently never rendered for any service since it was first added. -
Live Stats panel — CPU, memory, disk I/O with 30s auto-refresh. Surfaces
remoteState.cpu,remoteState.memory.{actual,unused}, andremoteState.disk.vda.{rd.bytes,wr.bytes}from VirtFusion's libvirt introspection. CPU and memory render as colored progress bars withbg-warningat 75% andbg-dangerat 90%. Disk I/O shows cumulative bytes since boot. Refresh pollsserverDataevery 30s while the panel is visible AND the page has focus — pauses onvisibilitychangeto avoid hammering libvirt when the customer alt-tabs away. Hidden entirely when the upstream call returns no remoteState block. -
Filesystem usage in the Resources panel. Per-mount usage rows sourced from qemu-guest-agent's fsinfo block (requires
qemu-guest-agentinstalled on the VM). Pseudo-FS (proc/sysfs/devtmpfs/tmpfs/cgroup/etc.) plus/boot*and/run*are filtered out — only customer-meaningful mounts show. Each row has a progress bar with the same 75%/90% warning thresholds. Hidden when the agent isn't running, with a one-line hint that customers can install qemu-guest-agent to populate the section. -
Server Overview meta bar — Location, OS, lifetime. Top of the panel now shows three chips: data-center location with country flag emoji (from
hypervisor.group.{name,icon}, country codes mapped via Regional Indicator Symbols), the OS template name preferring the qemu-agent's pretty name when available (with kernel version on hover), and a relative "Created N days ago" chip with the absolute timestamp on hover. -
Hypervisor maintenance banner. Yellow alert at the very top of the page when
hypervisor.maintenance=true. Prepares the customer to expect "operation may be unavailable" errors so they don't open support tickets for what's actually known maintenance. -
"Mask Sensitive" toggle for screenshot-safe viewing. Button on the Server Overview meta bar. When active, masks IPv4 (keeps first two octets —
205.186.•••.•••), IPv6 (keeps first two hextets —2602:2f3:••••::•), hostnames (keeps first char of each dot-separated label —m•••.e••••••.c••). Covers the Server Name input, Hostname row, IPv4/IPv6 cells in Server Overview, AND in the Reverse DNS panel rows. Input fields mask via CSStext-security: disc(preserves the underlying value for editing — focus reveals); text cells via attribute swap with the original cached ondata-vf-ip-original. State persists insessionStorageso screenshots taken across page refreshes stay masked. -
Per-IP copy buttons in Server Overview cells. Each IPv4 / IPv6 address renders as a row with a copy button (replaces the standalone Network panel that duplicated this information).
Bug Fixes
-
Critical: UsageUpdate cron silently never recorded any usage.
VirtFusionDirect_UsageUpdate()was readingserver.usage.traffic.usedandserver.usage.storage.used— neither path exists in any VirtFusion API response, sotblhosting.bwusedanddiskusedstayed at 0 forever for every service. Bandwidth now sourced from/servers/{id}/traffic'smonthly[0].total(canonical billing-period bytes); disk usage from/servers/{id}?remoteState=true'sagent.fsinfo[]summed (best-effort — only updates when qemu-guest-agent is running). Limits (settings.resources.{storage,traffic}) were already correct and untouched. Verified on live data: usage columns now populate correctly, unblocking suspend-on-overage rules and customer-facing usage bars. -
Critical: WHMCS 9 multi-service order short-circuit. WHMCS 9 added a batch order-acceptance loop that terminates as soon as the order leaves Pending status — calling
localAPI('AcceptOrder')mid-batch (which ourAfterModuleCreatehook did to advance the order) caused subsequent VF services in the same order to be skipped, leaving them Active intblhostingbut with nomod_virtfusion_directrow and no actual VPS in VirtFusion. Fix: defer the auto-accept until every VF service in the order has been provisioned. The hook fires once per service, so the last one to complete sees no unprovisioned siblings and triggers the actual accept. WHMCS 8 was unaffected (its loop ignored order status mid-batch); deferring there is harmless. -
Service detail page returned generic 500s for orphaned services. When a service exists in
tblhostingbut has no row (or NULLserver_id) inmod_virtfusion_direct— e.g., the multi-service order bug above, or a failed CreateAccount — every client.php endpoint silently bailed viaresolveServiceContext()and the customer saw a string of generic 500s with no actionable message. AddedModule::requireProvisionedService()helper that emits a single clean 409 ("Server has not been provisioned yet. Please contact support if this is unexpected.") on the first endpoint call. Wired into all 17 client.php cases aftervalidateUserOwnsService()so customers see one clear message instead of six broken sections. -
Traffic display in Server Overview showed
- / Unlimitedeven for servers with measured usage. Same root cause as the UsageUpdate bug:ServerResource::process()read the non-existentusage.traffic.usedpath. Fixed by havingModule::fetchServerData()make a secondary call to/servers/{id}/trafficand merge the current period's total bytes onto the server object astrafficUsedBytes; ServerResource reads from that stable field. Also renamed "Unlimited" → "Unmetered" everywhere — limit=0 means no cap, but traffic is still tracked per period, so Unmetered is more accurate. -
VNC viewer popup didn't render — wrong URL pattern. The
/vnc/?token=...URL VirtFusion returns is the raw WebSocket endpoint and rejects HTTP GET with 405. The actual noVNC viewer is a tiny HTML shell that loads<vfBaseUrl>/vnc/vnc.js. Fixed by serving the shell ourselves from a same-origin authenticated PHP route (client.php?action=vncViewer) — see the Security section below for the full shape. -
VNC toggle was lying and was removed. The PHP
Module::toggleVnc()was POSTing{enabled: bool}to VirtFusion when the API parameter is actuallyvnc: bool— silent no-op. Even after fixing the param, the API'svnc.enabledresponse field stayedfalseregardless of toggle state, and the wss endpoint accepts connections regardless of the panel toggle (per VirtFusion's current implementation, the toggle only manages a firewall flag that's currently broken at their panel level). Toggle removed entirely; VNC is treated as always-available, gated by WHMCS session + service ownership at our layer. -
OS gallery's "Other" category icon was hardcoded to a generic SVG. Forced override in
Module::groupOsTemplates()and matching branches inmodule.jsandhooks.phpwere nulling out the icon VirtFusion provides for the category. Reverted to use the upstream icon — applies in both the client-area Rebuild gallery and the checkout-side OS picker. Singleton-collected templates (those merged into a synthetic "Other" bucket) inherit the icon from VF's "Other" category if one was present in the source data. -
Save button squished on the Server Name rename row. Single flex row with 6px gap and a 200px max-width input was packing the randomise + save buttons into too-narrow columns on mid-width viewports. Wrapped the inputs in a flex-wrap container with explicit min-widths so all three controls stay readable down to mobile.
-
Server rename was force-lowercasing the input. Customer typed "VPS-01", got "vps-01" back. Both client and server validation enforced an RFC-1123-style hostname regex, but VirtFusion's
namefield is a display label that accepts any printable string up to 63 chars. Validation relaxed to non-empty + length cap + reject control characters. Mid-flight, the input field, Save, and Randomise buttons all freeze together so customers can't double-submit or edit while the rename is in flight. -
Server rename hit the wrong VirtFusion endpoint (and silently treated success as failure). The PHP module was using
PATCH /servers/{id}/name, which VirtFusion v7 returns 404 for — the path moved toPUT /servers/{id}/modify/name(consistent with/modify/memory,/modify/cpu, etc.). Even after fixing the URL, success was treated as failure because v7 returns HTTP 201 (Created) on rename and our success whitelist only accepted 200/204. Fixed both: switched to PUT + new path, added 201 to the whitelist.
Security
-
CSRF protection added to every destructive client.php action.
rebuild,resetPassword,resetServerPassword,powerAction,rename,selfServiceAddCredit,toggleVnc, andvncViewernow requirerequirePost()+requireSameOrigin(). Closes a class of attacks where a malicious page (or compromised ad slot) could embed a hidden form targetingclient.php?serviceID=X&action=rebuildand destroy the customer's data on the next page load they made while logged in. Previously onlyrdnsUpdatecarried these gates. -
Open-redirect defence on SSO.
Module::fetchLoginTokens()now validates that the URL constructed from VirtFusion'sendpoint_completeresolves to the same hostname as the configured VirtFusion panel before returning it for redirect. Defends against a hostname-mismatched response (compromised VF panel, tamperedtblserversrow, etc.) being used to phish customers. -
VNC viewer popup served from a same-origin authenticated POST route. Click → hidden form-submit (POST) to
client.php?action=vncViewer→requirePost()+requireSameOrigin()+isAuthenticated()+validateUserOwnsService()+requireProvisionedService()→ POST/vnc {vnc:true}to rotate the wss token → returntext/htmlwith the noVNC shell embedded. The wss URL never appears in any URL bar, browser history, or shareable link — it lives only in the HTTP response body delivered to a logged-in session. Each open rotates the token, so any prior credential exposure is short-lived. Response carriesX-Frame-Options: DENY,Cache-Control: no-store, private, and a strictContent-Security-Policy(default-src 'none',script-src 'self' <vf-panel>,connect-src wss://<vf-panel> <vf-panel>,frame-ancestors 'none') so the viewer cannot be re-hosted, embedded, or opened in a way that loads scripts from anywhere outside our WHMCS host or the configured VirtFusion panel. -
Per-action rate limiting on destructive endpoints via the new
Module::requireRateLimit()helper (Cache-backed, Redis-or-filesystem). Limits:rebuild60 s,resetPassword/resetServerPassword30 s,powerAction10 s,vncViewer/toggleVnc/selfServiceAddCredit5 s — all per-(action, serviceID). Defence against runaway browser scripts and accidental double-submits hammering the VirtFusion API. Returns 429 with a clear "Too many requests" message instead of letting the request through. -
IP and hostname masking covers screenshot-sensitive cells. See the Mask Sensitive feature above — reduces leakage when customers screen-share or attach screenshots for support.
-
IPv6 examples in the Reverse DNS placeholder + comment switched to the IANA documentation prefix
2001:db8::/32(RFC 3849), eliminating an inadvertent reference to a deployer-specific IPv6 block that previously appeared in customer-facing UI.
Removed
- Network panel (full removal) — duplicated Server Overview's IP rows. Per-IP copy buttons moved into the Overview cells via
vfRenderIpCells(). - Network Speed row from the Resources panel — VirtFusion's
inAverage/inPeak/inBurstand matching out-fields all return 0 in our setup (network speed isn't capped at the package level), so the row was always empty. - VNC enable/disable toggle — see Bug Fixes above.
Internal
Module::fetchServerData()now passes?remoteState=trueon the upstream call so the response includes live CPU/memory, disk I/O counters, and qemu-agent fsinfo. Adds one libvirt round-trip per page load on the hypervisor side; revisit caching if hypervisor load becomes a concern.ServerResource::process()exposes new fields:osName,osPretty,osKernel,osDistro,osIcon,location,locationIcon,hypervisorMaintenance,createdAt,builtAt, plus a nestedlive.{state, cpu, memoryActualKB, memoryUnusedKB, memoryAvailableKB, memoryRssKB, diskRdBytes, diskWrBytes, filesystems[]}block.Module::toggleVnc()corrected to post{vnc: bool}(the actual API parameter) instead of{enabled: bool}(silent no-op). Also returnsbaseUrlalongside the API envelope so the new vncViewer route can build the wss URL without re-deriving it.Module::getVncConsole()also returnsbaseUrlfor the same reason.- Panel margins tightened from
mb-3(16px) tomb-2(8px) across all 11 client-area panels for a tighter visual rhythm post-additions.
Full Changelog: v1.4.4...v1.5.0
Downloads
-
-
released this
2026-05-08 15:19:21 -04:00 | 3 commits to main since this releaseFeatures
install.shhelper script withinstall/upgrade/checksubcommands. Single-file POSIX bash script that handles both first-time installation and upgrades, auto-detects the WHMCS web user from the parent directory's ownership and applies it to new files via rsync--chown, optionally syncs the PowerDNS reverse-DNS addon (--with-addon), accepts a pinned version (--version v1.4.1, default: latest published release), preserves any customconfig/ConfigOptionMapping.phpacross the rsync--delete, and writes a.installed-versionmarker so thechecksubcommand can report installed-vs-latest without making changes. Pipeable via curl or wget. Exit codes forcheck(0=current, 1=outdated, 2=not installed) make it usable as a cron-driven update monitor. Closes the long-standing pitfall where rsyncing as root left files owned byroot:rootand the web server couldn't read them — the classic "module installed but invisible in WHMCS" symptom.
Bug Fixes
- Release workflow now force-publishes new releases to non-draft and marks them
--latest.softprops/action-gh-release@v2has a long-standing intermittent bug where it creates a release as a draft and silently fails to flip it to published, despite reporting success. v1.4.0, v1.4.1, and v1.4.2 all shipped as drafts because of this — meaning the GitHubreleases/latestAPI returned v1.3.0, the install snippets and the newinstall.shwould all download v1.3.0, and users would never get the storage-type-code fix even after running the documented upgrade. Added amake_latest: 'true'input to the action and a follow-upgh release edit --draft=false --lateststep that runs unconditionally as a safety net. v1.4.0/1/2 were manually re-published as a one-off cleanup.
Documentation
- README install/upgrade sections rewritten to feature the
install.shscript as the primary path (with bothcurlandwgetexamples), with the manual rsync recipe preserved in collapsible<details>blocks for users who prefer not to pipe scripts to bash. The manual recipe also gained astat -c '%U:%G'ownership probe and--chown="$OWNER"flag, fixing the same root-owned-file pitfall the script handles automatically.
Full Changelog: v1.4.2...v1.4.3
Downloads
-
released this
2026-05-08 15:19:20 -04:00 | 1 commits to main since this releaseBug Fixes
install.sh: "TMP: unbound variable" error at script exit, plus exit code 1 even on successful installs. The cleanuptrap 'rm -rf "$TMP"' EXITreferenced alocal TMPfrom insidecmd_sync(). The EXIT trap doesn't fire until the shell exits — by which time the function-scoped local is out of scope — andset -uthen exploded the trap body, masking the real exit code with1. Fix: droplocalsoTMPpersists at script scope until cleanup runs, and switch the trap body to${TMP:-}so any future regression that tightens TMP's scope still survives the trap. Cosmetic in practice (the install/upgrade work itself completed before the trap ran), but the non-zero exit broke automated wrappers and cron-driven invocations that check$?.
Full Changelog: v1.4.3...v1.4.4
Downloads
-
released this
2026-05-08 15:19:19 -04:00 | 7 commits to main since this releaseDocumentation
- Install/upgrade snippets now pull tagged releases instead of cloning
main. The previousgit cloneflow always pulled HEAD, which could include in-flight commits between releases — the same trap the v1.4.1 storage-type-code bug fell into for anyone who installed during the v1.4.0 release window. The new snippets default to the latest published release (queried live from the GitHub API at install time) and accept aVERSION=vX.Y.Zoverride for pinned installs and rollbacks. Pure POSIX — only requirescurl,sed,tar, andrsync, all standard on any WHMCS host. Thearchive/refs/tags/<TAG>.tar.gzendpoint is public and cacheable, so only the version lookup hits the GitHub API (well under the 60/hr unauthenticated rate limit).
Full Changelog: v1.4.1...v1.4.2
Downloads
- Install/upgrade snippets now pull tagged releases instead of cloning
-
released this
2026-05-08 15:19:18 -04:00 | 9 commits to main since this releaseBug Fixes
- Critical: stock control returned qty=0 fleet-wide for packages with a
primaryStorageProfile.StockControl::capForStorage()was comparing the package'sprimaryStorageProfileagainstotherStorage[].id, but the VirtFusion API exposes that field as a storage type code (mirrorsserver_packages.storage_type) — a filter that should matchotherStorage[].storageType. Pool ids are unique per hypervisor (e.g. 23/28/30 for the same logical mountpoint on three nodes) and almost never collide with the type-code domain (0=local, 4=mountpoint, etc.), so the check returned 0 for every hypervisor and silently zeroed inventory for any product that opted into stock control with a non-default storage profile. Symptoms: every stock-controlled VPS product showed qty=0 in WHMCS despite abundant memory/CPU/IPv4 capacity; only workarounds were disabling stock control or removingprimaryStorageProfilefrom the package, both of which defeat the gating. Fix: matchpool.storageTypeinstead ofpool.id; walk all pools that match (a hypervisor may carry multiple pools of the same type) and pick the one that fits the most VMs; treat a disabled pool as skip-and-continue rather than a hard zero, so an enabled peer of the same type still contributes. Also renamed the internal$profileIdparameter to$storageTypeIdso future readers don't fall into the same naming trap. Verified on a 3-hypervisor cluster: qty went from 0/0/0/0/0/0/0/0 to 66/32/15/7/3/1/32/15 across the VPS-1 through VPS-32 products with no other config change.
Full Changelog: v1.4.0...v1.4.1
Downloads
- Critical: stock control returned qty=0 fleet-wide for packages with a
-
released this
2026-05-08 15:19:18 -04:00 | 14 commits to main since this releaseFeatures
-
Dynamic VPS stock control driven by live hypervisor capacity. Opt-in per product via WHMCS's native
tblproducts.stockcontroltoggle; when enabled, the module overwritestblproducts.qtywith the real number of VPSes the panel can still provision and WHMCS handles the "Out of Stock" badge, Add-to-Cart gating, and checkout refusal natively — no template work required. qty is derived by combining two authoritative sources:GET /packages/{packageId}for the per-VPS resource footprint (memory,cpuCores,primaryStorage,primaryStorageProfile,enabled)GET /compute/hypervisors/groups/{id}/resourcesfor live per-hypervisor free/allocated data
Algorithm sums
min(memory, cpu, storage)across eligible hypervisors (enabled AND commissioned AND !prohibit) for every group the product can be placed in (defaultconfigoption1plus every numeric value of aLocationconfigurable option), capped by the group-level IPv4 pool taken asmax()within a group to avoid double-counting. Storage matching is strict againstpackage.primaryStorageProfile; hypervisors without the named pool contribute 0. Confirmed-missing conditions (HTTP 404 on/packages/{id},package.enabled=false) force qty=0; transient failures leaveqtyUNTOUCHED to avoid false out-of-stock during API blips. -
Event-driven stock recalculation hooks:
AfterModuleCreate— refreshes qty after every VirtFusion provision (capacity just decreased). Bursts of parallel provisions coalesce via a 30 s shared rate-limit.AfterModuleTerminate— refreshes qty after every VirtFusion termination (capacity just increased). Shares the 30 s rate-limit with create.AfterCronJob— every-2-hour safety net that catches capacity changes made directly in the VirtFusion panel without going through WHMCS. Interval tunable viaSTOCK_CRON_INTERVAL_SECONDSinhooks.php.ClientAreaPageCart— opportunistic per-product refresh during the order flow, rate-limited to once per product per 60 s.
-
Order auto-accept after successful provision.
AfterModuleCreatecalls WHMCSAcceptOrder(withautosetup=falseso there's no double-provision) when the parent order is still in Pending status. Closes the gap for installs that rely on pending-order workflows for non-VF products but want VirtFusion provisions to auto-advance. Idempotent — already-accepted orders are skipped. -
Admin-triggered full recalculation. New
admin.php?action=stockRecalculateaction (POST + same-origin required) runsStockControl::recalculateAll()on demand and returns a JSON{productId: qty}map; the module log gets a compact summary ({total, updated, zeroed, skipped}) so it stays readable on stores with hundreds of products. -
Per-product safety buffer. New
stockSafetyBufferPctconfig option (configoption7, default 10) reserves X% of each resource'smaxduring stock calculation. Applied only to capped resources (unlimited resources withmax=0skip the buffer). Admins can override per product in the module settings; blank falls back to 10% so existing products get sensible headroom without any config change. -
Test Connection now probes
/compute/hypervisors/groups. A VirtFusion API token scoped only to/serverswould pass the existing/connectcheck but silently break nightly stock updates. The admin's Test Connection button now surfaces missing/computeread scope at config time with a specific error rather than as unexplained nightly silence.
Caching
- New cache keys:
pkg:{packageId}(10 min TTL, package definitions rarely change) andgrpres:{groupId}(120 s TTL, resources change minute-to-minute under load). Confirmed 404 responses are cached for 60 s so an admin re-creating a deleted package/group takes effect quickly.
Safety Properties
Module::fetchPackage()andModule::fetchGroupResources()return a tri-statearray | false | null:falsemeans "VirtFusion confirmed this doesn't exist → OOS is correct",nullmeans "we can't tell right now → don't touch existing qty". Without this distinction the module would either zero out inventory during transient API blips, or show inventory for deleted packages.\Throwablecatches on every stock-path entry point (not just\Exception) so aTypeErrorfrom a malformed API response can't escape the tri-state contract.- Stock-control is gated by
tblproducts.stockcontrol=1— products that opt out are never touched, even by the safety-net cron.
Full Changelog: v1.3.0...v1.4.0
Downloads
-
-
released this
2026-04-17 22:05:25 -04:00 | 18 commits to main since this releaseBug Fixes
- Critical: decrypt() corruption of plaintext addon API keys.
Config::get()was calling WHMCS'sdecrypt()on the rawtbladdonmodules.valuefor the PowerDNS API key and accepting whatever non-empty result came back. WHMCS addon password-type fields are actually stored plaintext (unliketblservers.passwordwhich is encrypted), anddecrypt()on plaintext input returns ~4 bytes of binary garbage instead of empty. That garbage was ending up in theX-API-Key:header, producing a baffling 401 from PowerDNS and an empty zone list — which then surfaced as "no zone" for every IP in the client-area rDNS panel. Fix: only usedecrypt()'s output when it's printable ASCII; fall back to raw otherwise. Alsotrim()the chosen value so a stray paste-newline can't corrupt the header.
Features
- IPv6 subnet visibility + custom-host PTR flow. VirtFusion allocates v6 as whole subnets (e.g. a /64 routed to the VPS) rather than discrete host addresses. The module previously filtered these silently; now subnets appear as first-class rows in the client rDNS panel with a collapsible "Add host PTR" form. Ownership verification uses subnet containment (
IpUtil::ipv6InSubnet()viainet_pton+ bit masking) so any address inside one of the VPS's allocated subnets is writeable, while addresses outside them are rejected. FCrDNS / rate-limit / CSRF guards all still apply. - Diagnose-an-IP tool on the VirtFusion DNS addon admin page. Takes an IP input and runs the full PtrManager pipeline inline: config snapshot, fresh zone list (cache-bypassed), computed PTR name, matched zone, current PTR content. Every common failure mode (wrong key, wrong serverId, forgotten zone, mis-aligned RFC 2317 label, stale cache) produces a distinctive shape in that output, turning "support ticket" into "screenshot the diagnosis".
- Actionable auth-error messages.
Client::ping()now returns structured guidance on 401/403 (check API key,api-allow-from, whitespace) and 404 (checkserverId, it should be the literallocalhost), replacing the previous "authentication failed (check API key)" / "unexpected HTTP 404" which gave no clue which of several causes was actually biting.
Full Changelog: v1.2.0...v1.3.0
Downloads
- Critical: decrypt() corruption of plaintext addon API keys.
-
released this
2026-04-17 21:32:15 -04:00 | 23 commits to main since this release- docs(readme): factor install path into $WHMCS variable
Downloads
-
released this
2026-03-19 16:13:07 -04:00 | 27 commits to main since this releaseFeatures
- Auto-create custom fields —
Initial Operating SystemandInitial SSH Keyfields are now created automatically on module load viaDatabase::ensureCustomFields(). No more manual SQL import.modify.sqlhas been removed. (d253bd4) - OS gallery, server rename, traffic chart, backups, VNC toggle, password reset, Redis caching, UX improvements (90a97c4)
- Laravel Pint code formatting with pre-commit hook, auto-installed via Composer (d253bd4)
Bug Fixes
- Restore OS template icons using correct VirtFusion path
/img/logo/(6528c8a) - Constrain OS icon sizing and remove background when image loads (6694a5e)
- Constrain category header icon images with overflow:hidden and max dimensions (64dcce3)
- Use unix timestamp for cache busting, generic server icon for Other category (504d292)
- Force generic icon on 'Other' category even when API provides linux_logo.png (3ca9eb6)
- OS gallery accordion auto-collapses other sections when one opens (a9565ff)
- OS gallery accordion layout and remove broken remote icon fetching (9cd737c)
- Remove dead code, update stale versions, tag-based release workflow (d3d75b4)
Code Quality
- Comprehensive try/catch — every DB operation and API call is now wrapped per project error handling rules (d253bd4)
- Full PHPDoc — class-level and method-level documentation on all PHP files (d253bd4)
- Dead code removal and project audit cleanup (1ab2ef4)
- Consolidate duplicate logic across codebase (0ade74d)
- Simplified README installation to a single copy-paste command
Downloads
- Auto-create custom fields —
-
v1.0.0 Stable
released this
2026-03-19 14:52:21 -04:00 | 35 commits to main since this release1.0.0 (2026-03-19)
Bug Fixes
- add null/false guards, proper error handling, and VNC popup fix (49fdd9e)
- OS gallery accordion auto-collapses other sections when one opens (a9565ff)
- OS gallery accordion layout and remove broken remote icon fetching (9cd737c)
- TestConnection for unsaved servers, traffic display, and cache-busting (e8d2eb0)
- XSS escaping, null guards, JS bug fixes, and documentation updates (6c7cdc6)
Features
- add client-side SSH Ed25519 key generator on order page (209e01d)
- add VNC check, SSH key paste, resources panel, sliders, and self-service billing (1e471af)
- major enhancement — OS gallery, server rename, traffic chart, backups, VNC toggle, password reset, Redis caching, UX improvements (90a97c4)
- streamline network panel, conditional self-service, remove IP add endpoints (e73e85c)
Downloads