git-history-ui 5.0.1 → 5.0.3
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 +16 -0
- package/README.md +8 -14
- package/package.json +2 -2
- package/docs/screenshot.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ All notable changes to this project are documented in this file.
|
|
|
4
4
|
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
|
|
5
5
|
this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [5.0.3] - 2026-05-15
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Replaced the 26 MB `demo.gif` with a 586 KB `demo.mp4` (H.264) embedded
|
|
12
|
+
via an HTML5 `<video>` tag in the README.
|
|
13
|
+
- Restricted the published npm tarball to markdown files under `docs/` so
|
|
14
|
+
binary assets never ship with the package again.
|
|
15
|
+
|
|
16
|
+
## [5.0.2] - 2026-05-15
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- README now showcases a live demo GIF (`docs/images/demo.gif`) in place of
|
|
21
|
+
the previous static screenshot.
|
|
22
|
+
|
|
7
23
|
## [5.0.1] - 2026-05-03
|
|
8
24
|
|
|
9
25
|
### Added
|
package/README.md
CHANGED
|
@@ -41,20 +41,14 @@ npx git-history-ui@latest
|
|
|
41
41
|
|
|
42
42
|
## ⚡ 10-second workflow
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-

|
|
54
|
-
|
|
55
|
-
> A demo GIF showing NL search, the timeline slider, and grouped view is on
|
|
56
|
-
> the way. In the meantime, `npx git-history-ui@latest` is the fastest way
|
|
57
|
-
> to see it for yourself — it opens in your browser in under a second.
|
|
44
|
+
<p align="center">
|
|
45
|
+
<video src="https://github.com/beingmartinbmc/git-history-ui/raw/main/docs/images/demo.mp4" controls muted playsinline width="900">
|
|
46
|
+
<a href="https://github.com/beingmartinbmc/git-history-ui/raw/main/docs/images/demo.mp4">▶ Watch the demo</a>
|
|
47
|
+
</video>
|
|
48
|
+
</p>
|
|
49
|
+
|
|
50
|
+
> `npx git-history-ui@latest` is the fastest way to see it for yourself —
|
|
51
|
+
> it opens in your browser in under a second.
|
|
58
52
|
|
|
59
53
|
## 🤔 Why this exists
|
|
60
54
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-history-ui",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "Local-first Git history UI with natural-language search, PR grouping, time travel, blame, and optional AI.",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"types": "dist/backend/server.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"files": [
|
|
22
22
|
"dist/**/*",
|
|
23
23
|
"build/**/*",
|
|
24
|
-
"docs
|
|
24
|
+
"docs/**/*.md",
|
|
25
25
|
"public/**/*",
|
|
26
26
|
"README.md",
|
|
27
27
|
"LICENSE",
|
package/docs/screenshot.png
DELETED
|
Binary file
|