blippy 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 CHANGED
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.4](https://github.com/AksharP5/blippy/compare/v0.1.3...v0.1.4) - 2026-02-13
11
+
12
+ ### Fixed
13
+
14
+ - convert video tag to link for GitHub compatibility
15
+
16
+ ### Other
17
+
18
+ - extract worker setup helpers
19
+ - standardize import ordering
20
+ - introduce context structs for high-arity functions
21
+ - remove dead code
22
+ - apply mechanical clippy fixes
23
+ - remove underscore prefixes from used function parameters
24
+ - replace images with GitHub-hosted demo videos
25
+ - add demo video to README
26
+ - update repo image
27
+ - increase PR checkout GIF to 60fps for maximum smoothness
28
+ - increase PR checkout GIF to 30fps for smoother animation
29
+ - convert PR checkout video to GIF for inline display
30
+ - update demo with new repo image and PR checkout video
31
+ - add DEMO.md with visual walkthrough screenshots
32
+
10
33
  ## [0.1.3](https://github.com/AksharP5/blippy/compare/v0.1.2...v0.1.3) - 2026-02-12
11
34
 
12
35
  ### Added
package/README.md CHANGED
@@ -4,6 +4,10 @@ GitHub in your terminal.
4
4
 
5
5
  blippy is a keyboard-first TUI for GitHub issues and pull requests.
6
6
 
7
+ https://github.com/user-attachments/assets/14daa99b-c39a-43d9-b32d-9d5a6840819f
8
+
9
+ See the full [feature demo](DEMO.md) for more screenshots.
10
+
7
11
  ## Requirements
8
12
 
9
13
  - Rust toolchain (`1.93+` recommended) for source builds
@@ -45,6 +49,7 @@ cargo install --git https://github.com/AksharP5/blippy
45
49
  ## CLI Commands
46
50
 
47
51
  - `blippy`: launch the TUI
52
+ - `blippy --version`: show version information
48
53
  - `blippy sync`: scan local repos and cache GitHub remotes
49
54
  - `blippy auth reset`: remove stored auth token from keychain
50
55
  - `blippy cache reset`: remove local cache database
@@ -93,6 +98,7 @@ body = "Closing this issue as resolved."
93
98
 
94
99
  ## Documentation
95
100
 
101
+ - Feature demo with screenshots: [DEMO.md](DEMO.md)
96
102
  - Authentication and PAT setup: [AUTH.md](AUTH.md)
97
103
  - Feature guide: [FEATURES.md](FEATURES.md)
98
104
  - Key reference: [KEYBINDS.md](KEYBINDS.md)
@@ -22,7 +22,7 @@
22
22
  },
23
23
  "hasInstallScript": true,
24
24
  "name": "blippy",
25
- "version": "0.1.3"
25
+ "version": "0.1.4"
26
26
  },
27
27
  "node_modules/@isaacs/balanced-match": {
28
28
  "engines": {
@@ -514,5 +514,5 @@
514
514
  }
515
515
  },
516
516
  "requires": true,
517
- "version": "0.1.3"
517
+ "version": "0.1.4"
518
518
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/AksharP5/blippy/releases/download/v0.1.3",
2
+ "artifactDownloadUrl": "https://github.com/AksharP5/blippy/releases/download/v0.1.4",
3
3
  "bin": {
4
4
  "blippy": "run-blippy.js"
5
5
  },
@@ -75,7 +75,7 @@
75
75
  "zipExt": ".tar.gz"
76
76
  }
77
77
  },
78
- "version": "0.1.3",
78
+ "version": "0.1.4",
79
79
  "volta": {
80
80
  "node": "18.14.1",
81
81
  "npm": "9.5.0"