depwire-cli 0.9.3 → 0.9.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
let temporalData = null;
|
|
2
|
-
let currentIndex = 0;
|
|
2
|
+
let currentIndex = 0; // Will be set to latest snapshot after data loads
|
|
3
3
|
let isPlaying = false;
|
|
4
4
|
let playSpeed = 1;
|
|
5
5
|
let playInterval = null;
|
|
@@ -15,8 +15,10 @@ async function init() {
|
|
|
15
15
|
document.getElementById('projectName').textContent = temporalData.projectName;
|
|
16
16
|
document.getElementById('snapshotCount').textContent = temporalData.snapshots.length;
|
|
17
17
|
|
|
18
|
+
currentIndex = temporalData.snapshots.length - 1; // Start at latest snapshot
|
|
19
|
+
|
|
18
20
|
setupTimeline();
|
|
19
|
-
renderSnapshot(
|
|
21
|
+
renderSnapshot(currentIndex);
|
|
20
22
|
setupControls();
|
|
21
23
|
setupSearch();
|
|
22
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "depwire-cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Code cross-reference visualization and AI context engine for TypeScript, JavaScript, Python, Go, Rust, and C. Zero native dependencies — works on Windows, macOS, and Linux.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|