@reels/tui 1.2.0 → 1.2.2

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.
Files changed (2) hide show
  1. package/README.md +30 -10
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # reels
2
2
 
3
- Instagram reels in the terminal.
3
+ TUI for Instagram Reels. Doomscrollbrainrotmaxxing in the terminal.
4
4
 
5
5
  ## Install
6
6
 
@@ -10,9 +10,17 @@ npm install -g @reels/tui
10
10
 
11
11
  ## Prerequisites
12
12
 
13
- - **Terminal**: [Kitty](https://sw.kovidgoyal.net/kitty/), [WezTerm](https://wezfurlong.org/wezterm/), or [Konsole](https://konsole.kde.org/) (Kitty graphics protocol required)
14
- - **Browser**: Chrome, Chromium, or Brave
15
- - **FFmpeg**: FFmpeg 8+
13
+ ### Terminal
14
+ You need a terminal that supports the **Kitty graphics protocol**:
15
+ - [Kitty](https://sw.kovidgoyal.net/kitty/) (recommended)
16
+ - [WezTerm](https://wezfurlong.org/wezterm/)
17
+ - [Konsole](https://konsole.kde.org/)
18
+
19
+ ### Browser
20
+ Chrome, Chromium, or Brave must be installed. The app uses headless browser automation to interact with Instagram.
21
+
22
+ ### FFmpeg
23
+ FFmpeg 8+ must be installed on your system.
16
24
 
17
25
  ## Usage
18
26
 
@@ -25,17 +33,23 @@ reels
25
33
  - `--login` - Open browser window to log in to Instagram
26
34
 
27
35
  ### Controls
28
- - `j` / `k` - Next / previous reel
36
+ - `j` - Next reel (scroll comments when open)
37
+ - `k` - Previous reel (scroll comments when open)
29
38
  - `Space` - Pause/resume
30
39
  - `l` - Like/unlike
31
- - `c` - Toggle comments
32
- - `e` - Toggle navbar
40
+ - `e` - Toggle Navbar
41
+ - `c` - Toggle Comments
33
42
  - `m` - Mute
34
- - `]` / `[` - Volume up/down
35
- - `=` / `-` - Enlarge/shrink video
43
+ - `]` - Volume up
44
+ - `[` - Volume down
45
+ - `s` - Share reel via DM
46
+ - `y` - Copy reel link to clipboard
47
+ - `=` - Enlarge Video
48
+ - `-` - Shrink Video
49
+ - `?` - Help
36
50
  - `q` - Quit
37
51
 
38
- All keybinds are configurable in `reels.conf`.
52
+ All keybinds are configurable in `reels.conf`. Each action supports multiple binds.
39
53
 
40
54
  ## Supported Platforms
41
55
 
@@ -44,6 +58,12 @@ All keybinds are configurable in `reels.conf`.
44
58
  | Linux x64 | `@reels/linux-x64` |
45
59
  | macOS ARM64 | `@reels/darwin-arm64` |
46
60
 
61
+ ## File Paths
62
+
63
+ - Settings: `~/.config/reels/reels.conf`
64
+ - Cache: `~/.cache/reels/`
65
+ - Chrome Data: `~/.local/shared/reels/`
66
+
47
67
  ## Links
48
68
 
49
69
  - [GitHub](https://github.com/njyeung/reels)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reels/tui",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Instagram reels in the terminal",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -21,7 +21,7 @@
21
21
  "reels": "bin/reels"
22
22
  },
23
23
  "optionalDependencies": {
24
- "@reels/linux-x64": "1.2.0",
25
- "@reels/darwin-arm64": "1.2.0"
24
+ "@reels/linux-x64": "1.2.2",
25
+ "@reels/darwin-arm64": "1.2.2"
26
26
  }
27
27
  }