@chappibunny/repolens 1.9.6 โ†’ 1.9.10

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 CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  All notable changes to RepoLens will be documented in this file.
4
4
 
5
+ ## 1.9.10
6
+
7
+ ### ๐Ÿ“น Documentation
8
+
9
+ - **Fixed demo video link**: Use text link instead of thumbnail (Loom CDN requires specific sharing settings)
10
+
11
+ ## 1.9.9
12
+
13
+ ### ๐Ÿ› Bug Fixes
14
+
15
+ - **Fixed cache age calculation**: Use `Math.max(0, ...)` to prevent negative age due to filesystem timestamp precision
16
+
17
+ ## 1.9.8
18
+
19
+ ### ๐Ÿ“ธ Documentation
20
+
21
+ - **Added publisher screenshots**: README now shows Notion and Confluence output examples in 2-column layout
22
+ - **Organized assets**: Moved screenshots to `assets/` folder with consistent naming
23
+
24
+ ## 1.9.7
25
+
26
+ ### ๐Ÿ“น Documentation
27
+
28
+ - **Fixed demo video embed**: Use Loom thumbnail with link (iframes don't render in GitHub markdown)
29
+
5
30
  ## 1.9.6
6
31
 
7
32
  ### ๐Ÿ“น Documentation
package/README.md CHANGED
@@ -17,7 +17,7 @@
17
17
 
18
18
  RepoLens scans your repository, generates living architecture documentation, and publishes it to Notion, Confluence, GitHub Wiki, or Markdown โ€” automatically on every push. Engineers get technical docs. Stakeholders get readable system overviews. Nobody writes a word.
19
19
 
20
- > Stable as of v1.0 โ€” [API guarantees](docs/STABILITY.md) ยท [Security hardened](SECURITY.md) ยท v1.9.6
20
+ > Stable as of v1.0 โ€” [API guarantees](docs/STABILITY.md) ยท [Security hardened](SECURITY.md) ยท v1.9.10
21
21
 
22
22
  ---
23
23
 
@@ -25,9 +25,18 @@ RepoLens scans your repository, generates living architecture documentation, and
25
25
 
26
26
  > **Try it now** โ€” no installation required. Run `npx @chappibunny/repolens demo` on any repo for an instant local preview.
27
27
 
28
- <div style="position: relative; padding-bottom: 40.955631399317404%; height: 0;"><iframe src="https://www.loom.com/embed/8e077624e69f41319fd93acbbe03871e" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;"></iframe></div>
29
-
30
- โ–ถ๏ธ *Click to watch demo*
28
+ ๐ŸŽฌ **[Watch Demo Video](https://www.loom.com/share/8e077624e69f41319fd93acbbe03871e)** โ€” See RepoLens generate docs in 60 seconds
29
+
30
+ <table>
31
+ <tr>
32
+ <td width="50%"><img src="assets/notion-screenshot.png" alt="Notion output" /></td>
33
+ <td width="50%"><img src="assets/confluence-screenshot.png" alt="Confluence output" /></td>
34
+ </tr>
35
+ <tr>
36
+ <td align="center"><em>Notion</em></td>
37
+ <td align="center"><em>Confluence</em></td>
38
+ </tr>
39
+ </table>
31
40
 
32
41
  <details>
33
42
  <summary>๐Ÿ” <strong>Supported Languages</strong> (16 auto-detected)</summary>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chappibunny/repolens",
3
- "version": "1.9.6",
3
+ "version": "1.9.10",
4
4
  "description": "AI-assisted documentation intelligence system for technical and non-technical audiences",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -28,7 +28,8 @@ export async function loadDocCache(cacheDir) {
28
28
  fs.readFile(cachePath, "utf8"),
29
29
  fs.stat(cachePath),
30
30
  ]);
31
- const age = Date.now() - stat.mtimeMs;
31
+ // Math.max ensures age is never negative due to timing precision
32
+ const age = Math.max(0, Date.now() - stat.mtimeMs);
32
33
  return { cache: JSON.parse(raw), age };
33
34
  } catch {
34
35
  return { cache: {}, age: null };