@reels/tui 1.2.4 → 1.2.7
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/README.md +29 -19
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -19,8 +19,6 @@ You need a terminal that supports the **Kitty graphics protocol**:
|
|
|
19
19
|
### Browser
|
|
20
20
|
Chrome, Chromium, or Brave must be installed. The app uses headless browser automation to interact with Instagram.
|
|
21
21
|
|
|
22
|
-
### FFmpeg
|
|
23
|
-
FFmpeg 8+ must be installed on your system.
|
|
24
22
|
|
|
25
23
|
## Usage
|
|
26
24
|
|
|
@@ -33,29 +31,41 @@ reels
|
|
|
33
31
|
- `--login` - Open browser window to log in to Instagram
|
|
34
32
|
|
|
35
33
|
### Controls
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
34
|
+
|
|
35
|
+
| reels.conf bind | Default | Action |
|
|
36
|
+
|-----------------|---------|--------|
|
|
37
|
+
| `key_next` | `j` | Next reel (scrolls panels when open) |
|
|
38
|
+
| `key_previous` | `k` | Previous reel (scrolls panels when open) |
|
|
39
|
+
| `key_seek_backward` | `h` | Seek backward by 5 seconds |
|
|
40
|
+
| `key_seek_forward` | `l` | Seek forward by 5 seconds |
|
|
41
|
+
| `key_like` | `space` | Like/unlike |
|
|
42
|
+
| `key_share_select` | `space` | Select friend in share panel. Overrides any other bind while share panel is open |
|
|
43
|
+
| `key_pause` | `p` | Pause/resume current reel |
|
|
44
|
+
| `key_save` | `b` | Save/Unsave (bookmark) current reel |
|
|
45
|
+
| `key_navbar` | `e` | Toggle navbar, a condensed version of the help menu |
|
|
46
|
+
| `key_comments_open` | `c` | Open comments |
|
|
47
|
+
| `key_comments_close` | `C` | Close comments |
|
|
48
|
+
| `key_share_open` | `s` | Open share panel. Allows you to share reels with instagram's suggested top friends. |
|
|
49
|
+
| `key_share_close` | `S` | Close Share panel & sends to friends' DMs (if any are selected) |
|
|
50
|
+
| `key_copy_link` | `y` | Copy reel link to clipboard |
|
|
51
|
+
| `key_mute` | `m` | Mute current reel |
|
|
52
|
+
| `key_vol_up` | `]` | Volume up |
|
|
53
|
+
| `key_vol_down` | `[` | Volume down |
|
|
54
|
+
| `key_reel_size_inc` | `=` | Enlarge video |
|
|
55
|
+
| `key_reel_size_dec` | `-` | Shrink video |
|
|
56
|
+
| `key_help_open` | `?` | Help panel shows the current keybinds |
|
|
57
|
+
| `key_help_close`| `?` | Close help panel |
|
|
58
|
+
| `key_quit` | `q` | Quit |
|
|
59
|
+
| `key_quit` | `ctrl+c` | Quit |
|
|
60
|
+
|
|
61
|
+
All keybinds are configurable in `reels.conf`. Each action supports multiple binds. Open/close pairs (like `key_comments_open` and `key_comments_close`) can be bound to the same key to toggle.
|
|
53
62
|
|
|
54
63
|
## Supported Platforms
|
|
55
64
|
|
|
56
65
|
| Platform | Package |
|
|
57
66
|
|----------|---------|
|
|
58
67
|
| Linux x64 | `@reels/linux-x64` |
|
|
68
|
+
| Linux ARM64 | `@reels/linux-arm64` |
|
|
59
69
|
| macOS ARM64 | `@reels/darwin-arm64` |
|
|
60
70
|
|
|
61
71
|
## File Paths
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reels/tui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"description": "Instagram reels in the terminal",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"reels": "bin/reels"
|
|
22
22
|
},
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"@reels/linux-x64": "1.2.
|
|
25
|
-
"@reels/
|
|
24
|
+
"@reels/linux-x64": "1.2.7",
|
|
25
|
+
"@reels/linux-arm64": "1.2.7",
|
|
26
|
+
"@reels/darwin-arm64": "1.2.7"
|
|
26
27
|
}
|
|
27
28
|
}
|