git-history-ui 5.0.2 → 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 +9 -0
- package/README.md +5 -10
- package/package.json +2 -2
- package/docs/images/demo.gif +0 -0
- package/docs/screenshot.png +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ 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
|
+
|
|
7
16
|
## [5.0.2] - 2026-05-15
|
|
8
17
|
|
|
9
18
|
### Changed
|
package/README.md
CHANGED
|
@@ -41,16 +41,11 @@ npx git-history-ui@latest
|
|
|
41
41
|
|
|
42
42
|
## ⚡ 10-second workflow
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
Done.
|
|
50
|
-
|
|
51
|
-
## 👀 Preview
|
|
52
|
-
|
|
53
|
-

|
|
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>
|
|
54
49
|
|
|
55
50
|
> `npx git-history-ui@latest` is the fastest way to see it for yourself —
|
|
56
51
|
> it opens in your browser in under a second.
|
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/images/demo.gif
DELETED
|
Binary file
|
package/docs/screenshot.png
DELETED
|
Binary file
|