@mahe_pkm/buzl-capi 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +1 -1
- package/USER_HANDBOOK.html +1 -1
- package/assets/js/buzl-tracking.js +1 -1
- package/package.json +1 -1
- package/src/cli/terminal.js +2 -1
- package/src/gui/public/app.js +2 -2
- package/src/gui/public/index.html +1 -1
- package/src/templates/buzl-tracking.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ All notable changes to the **Buzl Tracker & Conversions API (CAPI)** project wil
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.1.4] - 2026-09-14
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Dynamic Version Resolution in Terminal Banner**:
|
|
12
|
+
- Replaced hardcoded static version string in `src/cli/terminal.js` banner with dynamic `pkg.version` resolution from `package.json`.
|
|
13
|
+
- Terminal interactive wizard now accurately reflects current package version across all platforms.
|
|
14
|
+
- **Runtime Tracking Version Synchronization**:
|
|
15
|
+
- Synchronized `VERSION` constant in `src/templates/buzl-tracking.js` and `assets/js/buzl-tracking.js` to release `0.1.4`.
|
|
16
|
+
|
|
8
17
|
---
|
|
9
18
|
|
|
10
19
|
## [0.1.3] - 2026-09-14
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ⚡ Buzl Tracker & Conversions API (`@mahe_pkm/buzl-capi`)
|
|
2
2
|
|
|
3
|
-
[](https://github.com/mahe-pkm/Buzl_CAPI)
|
|
4
4
|
[](https://nodejs.org)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](tests/)
|
package/USER_HANDBOOK.html
CHANGED
|
@@ -421,7 +421,7 @@
|
|
|
421
421
|
<h1>📖 Buzl Tracker & Conversions API Suite</h1>
|
|
422
422
|
<p>All-in-one cross-platform reference guide with isolated, copy-ready command blocks for Windows, macOS, and Linux.</p>
|
|
423
423
|
<div class="badge-bar">
|
|
424
|
-
<span class="badge">Version 0.1.
|
|
424
|
+
<span class="badge">Version 0.1.4</span>
|
|
425
425
|
<span class="badge badge-success">38/38 Tests Passing</span>
|
|
426
426
|
<span class="badge">Locations Design System</span>
|
|
427
427
|
<span class="badge">WCAG 2.2 AA Certified</span>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}(typeof self !== 'undefined' ? self : this, function () {
|
|
16
16
|
'use strict';
|
|
17
17
|
|
|
18
|
-
var VERSION = '1.
|
|
18
|
+
var VERSION = '0.1.4';
|
|
19
19
|
|
|
20
20
|
function win() { return typeof window !== 'undefined' ? window : {}; }
|
|
21
21
|
function doc() { return typeof document !== 'undefined' ? document : {}; }
|
package/package.json
CHANGED
package/src/cli/terminal.js
CHANGED
|
@@ -11,6 +11,7 @@ const { applyInjection, removeTracking, removeService } = require('../core/injec
|
|
|
11
11
|
const { runVerification, testIndividualForm } = require('../core/tester');
|
|
12
12
|
const { listBackups, restoreBackup, manualBackup } = require('../core/rollback');
|
|
13
13
|
const { startGuiServer } = require('../gui/server');
|
|
14
|
+
const pkg = require('../../package.json');
|
|
14
15
|
|
|
15
16
|
// Official Buzl Brand Color Tokens (with ANSI Truecolor & fallback)
|
|
16
17
|
const colors = {
|
|
@@ -49,7 +50,7 @@ function printLiveState(scan) {
|
|
|
49
50
|
console.log(colors.blueBold(' ██╔══██╗██║ ██║ ███╔╝ ██║ ╚══') + colors.amberBold('══╝██║ ██╔══██║██╔═══╝ ██║'));
|
|
50
51
|
console.log(colors.blueBold(' ██████╔╝╚██████╔╝███████╗███████╗') + colors.amberBold(' ╚██████╗██║ ██║██║ ██║'));
|
|
51
52
|
console.log(colors.blueBold(' ╚═════╝ ╚═════╝ ╚══════╝╚══════╝') + colors.amberBold(' ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝'));
|
|
52
|
-
console.log(colors.ice(
|
|
53
|
+
console.log(colors.ice(` ⚡ BUZL CONVERSIONS API & MULTI-CHANNEL DISPATCHER • v${pkg.version}\n`));
|
|
53
54
|
|
|
54
55
|
// 2. Target Project Scope Card
|
|
55
56
|
console.log(b(' ╭─────────────────────────── [ 📂 TARGET PROJECT ] ───────────────────────────╮'));
|
package/src/gui/public/app.js
CHANGED
|
@@ -471,7 +471,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
|
471
471
|
|
|
472
472
|
const exportData = {
|
|
473
473
|
reportTitle: 'BUZL CAPI Suite — Automated Verification & Compliance Audit Report',
|
|
474
|
-
version: '0.1.
|
|
474
|
+
version: '0.1.4',
|
|
475
475
|
generatedAt: new Date().toISOString(),
|
|
476
476
|
projectRoot: (liveStateRootDir ? liveStateRootDir.textContent : '') || 'Workspace Root',
|
|
477
477
|
summary: {
|
|
@@ -569,7 +569,7 @@ document.addEventListener('DOMContentLoaded', () => {
|
|
|
569
569
|
<div style="text-align:right;">
|
|
570
570
|
<div class="meta"><strong>Date:</strong> ${timestamp}</div>
|
|
571
571
|
<div class="meta"><strong>Status:</strong> <span style="color:${statusColor}; font-weight:700;">${report.allPassed ? 'VERIFIED PASS' : 'ISSUES DETECTED'}</span></div>
|
|
572
|
-
<div class="meta"><strong>Engine:</strong> v0.1.
|
|
572
|
+
<div class="meta"><strong>Engine:</strong> v0.1.4 (WCAG 2.2 AA)</div>
|
|
573
573
|
</div>
|
|
574
574
|
</div>
|
|
575
575
|
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
<div class="brand-titles">
|
|
125
125
|
<div class="brand-headline">
|
|
126
126
|
<h1>Conversions API & Form Tracking Suite</h1>
|
|
127
|
-
<span class="version-badge">v0.1.
|
|
127
|
+
<span class="version-badge">v0.1.4</span>
|
|
128
128
|
</div>
|
|
129
129
|
<p class="subtitle">Automated GTM, Meta CAPI, Google Sheets CRM & Zoho Web-to-Lead integration.</p>
|
|
130
130
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
}(typeof self !== 'undefined' ? self : this, function () {
|
|
16
16
|
'use strict';
|
|
17
17
|
|
|
18
|
-
var VERSION = '1.
|
|
18
|
+
var VERSION = '0.1.4';
|
|
19
19
|
|
|
20
20
|
function win() { return typeof window !== 'undefined' ? window : {}; }
|
|
21
21
|
function doc() { return typeof document !== 'undefined' ? document : {}; }
|