@reels/tui 1.2.7 → 1.2.9

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 +14 -5
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,6 +1,14 @@
1
- # reels
2
-
3
- TUI for Instagram Reels. Doomscrollbrainrotmaxxing in the terminal.
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/njyeung/reels/main/assets/banner.svg" alt="REELS TUI" width="100%">
3
+ </p>
4
+ <p align="center">
5
+ <img src="https://raw.githubusercontent.com/njyeung/reels/main/assets/demo_popos.gif" width="35%" />
6
+ <img src="https://raw.githubusercontent.com/njyeung/reels/main/assets/demo_macos.gif" width="35%">
7
+ <img src="https://raw.githubusercontent.com/njyeung/reels/main/assets/demo_arch.gif" width="26%" />
8
+ </p>
9
+ <p align="center">
10
+ <img src="https://raw.githubusercontent.com/njyeung/reels/main/assets/subtitle.svg" alt="Doomscrollbrainrotmaxxing in the terminal" width="500">
11
+ </p>
4
12
 
5
13
  ## Install
6
14
 
@@ -16,8 +24,8 @@ You need a terminal that supports the **Kitty graphics protocol**:
16
24
  - [WezTerm](https://wezfurlong.org/wezterm/)
17
25
  - [Konsole](https://konsole.kde.org/)
18
26
 
19
- ### Browser
20
- Chrome, Chromium, or Brave must be installed. The app uses headless browser automation to interact with Instagram.
27
+ ### Chrome (LINUX ARM64 ONLY)
28
+ Chrome is automatically downloaded on first run if no system Chrome/Chromium is found; No action is needed for most platforms. The exception is Linux ARM64, where Chrome For Testing isn't available yet ([coming Q2 2026!](https://blog.chromium.org/2026/03/bringing-chrome-to-arm64-linux-devices.html)). If you are on Linux ARM64, you'll need to install Chromium manually before running Reels.
21
29
 
22
30
 
23
31
  ## Usage
@@ -39,6 +47,7 @@ reels
39
47
  | `key_seek_backward` | `h` | Seek backward by 5 seconds |
40
48
  | `key_seek_forward` | `l` | Seek forward by 5 seconds |
41
49
  | `key_like` | `space` | Like/unlike |
50
+ | `key_repost` | `r` | Repost/unrepost current reel |
42
51
  | `key_share_select` | `space` | Select friend in share panel. Overrides any other bind while share panel is open |
43
52
  | `key_pause` | `p` | Pause/resume current reel |
44
53
  | `key_save` | `b` | Save/Unsave (bookmark) current reel |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reels/tui",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "description": "Instagram reels in the terminal",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -21,8 +21,8 @@
21
21
  "reels": "bin/reels"
22
22
  },
23
23
  "optionalDependencies": {
24
- "@reels/linux-x64": "1.2.7",
25
- "@reels/linux-arm64": "1.2.7",
26
- "@reels/darwin-arm64": "1.2.7"
24
+ "@reels/linux-x64": "1.2.9",
25
+ "@reels/linux-arm64": "1.2.9",
26
+ "@reels/darwin-arm64": "1.2.9"
27
27
  }
28
28
  }