@reels/tui 1.2.11 → 1.3.1

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 +6 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -48,7 +48,7 @@ reels
48
48
  | `key_seek_forward` | `l` | Seek forward by 5 seconds |
49
49
  | `key_like` | `space` | Like/unlike |
50
50
  | `key_repost` | `r` | Repost/unrepost current reel |
51
- | `key_share_select` | `space` | Select friend in share panel. Overrides any other bind while share panel is open |
51
+ | `key_select` | `space` | Select friend in share/friends panel. Overrides any other bind while either panel is open |
52
52
  | `key_pause` | `p` | Pause/resume current reel |
53
53
  | `key_save` | `b` | Save/Unsave (bookmark) current reel |
54
54
  | `key_navbar` | `e` | Toggle navbar, a condensed version of the help menu |
@@ -56,6 +56,8 @@ reels
56
56
  | `key_comments_close` | `C` | Close comments |
57
57
  | `key_share_open` | `s` | Open share panel. Allows you to share reels with instagram's suggested top friends. |
58
58
  | `key_share_close` | `S` | Close Share panel & sends to friends' DMs (if any are selected) |
59
+ | `key_friends_open` | `d` | Open DM friends panel to view reels shared by friends |
60
+ | `key_friends_close` | `D` | Close DM friends panel / exit friend mode |
59
61
  | `key_copy_link` | `y` | Copy reel link to clipboard |
60
62
  | `key_mute` | `m` | Mute current reel |
61
63
  | `key_vol_up` | `]` | Volume up |
@@ -82,6 +84,9 @@ All keybinds are configurable in `reels.conf`. Each action supports multiple bin
82
84
  - Settings: `~/.config/reels/reels.conf`
83
85
  - Cache: `~/.cache/reels/`
84
86
  - Chrome Data: `~/.local/shared/reels/`
87
+ - Logs: `~/.local/state/reels/reels.log`
88
+
89
+ `Debugging tip: If Reels TUI persistently fails with an error, try rm -rf ~/.local/shared/reels/`
85
90
 
86
91
  ## Links
87
92
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reels/tui",
3
- "version": "1.2.11",
3
+ "version": "1.3.1",
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.11",
25
- "@reels/linux-arm64": "1.2.11",
26
- "@reels/darwin-arm64": "1.2.11"
24
+ "@reels/linux-x64": "1.3.1",
25
+ "@reels/linux-arm64": "1.3.1",
26
+ "@reels/darwin-arm64": "1.3.1"
27
27
  }
28
28
  }