Skip to content

Commit 46b3042

Browse files
committed
Remove obsolete bugs from list. Bump version.
1 parent ef80eed commit 46b3042

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ GitHub.
180180

181181
* If you run `lsix foo.avi`, you're asking for trouble.
182182

183-
* Old versions of xterm need configuration to detect window size.
183+
* Obsolete versions of xterm need configuration to detect window size.
184184

185185
If you are using Xterm(343) or below, to have `lsix` automatically
186186
adjust how many tiles it shows based on your window size, you'll need
@@ -197,7 +197,6 @@ GitHub.
197197
number 14. _(This_ _is_ _very_ _silly.)_
198198

199199

200-
201200
## Future Issues
202201

203202
* The Sixel standard doesn't appear to have a way to query the size of

lsix

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
# Requirements: just ImageMagick (and a Sixel terminal, of course)
77

8-
# Version 1.7.2
9-
# B9 September 2020
8+
# Version 1.7.4
9+
# B9 May 2021
1010

1111
# See end of file for USAGE.
1212

@@ -172,7 +172,7 @@ autodetect() {
172172
fi
173173

174174
# BUG WORKAROUND: XTerm cannot show images wider than 1000px.
175-
# Remove this hack once XTerm gets fixed. Last checked: XTerm(327)
175+
# Remove this hack once XTerm gets fixed. Last checked: XTerm(344)
176176
if [[ $TERM =~ xterm && $width -ge 1000 ]]; then width=1000; fi
177177

178178
# Space on either side of each tile is less than 0.5% of total screen width
@@ -316,21 +316,12 @@ read -s -t 60 -d "c" -p $'\e[c' >&2
316316
# ! Allow sixel graphics. (Try: "convert -colors 16 foo.jpg sixel:-").
317317
# xterm*decTerminalID : vt340
318318

319-
# * Xterm does not support reporting the screen size in pixels unless
320-
# you add this to your .Xresources:
321-
#
322-
# ! Allow xterm to read the terminal window size (op #14)
323-
# xterm*allowWindowOps : False
324-
# xterm*disallowedWindowOps : 1,2,3,4,5,6,7,8,9,11,13,18,19,20,21,GetSelection,SetSelection,SetWinLines,SetXprop
325-
326319
# * Be cautious using lsix on videos (lsix *.avi) as ImageMagick will
327320
# try to make a montage of every single frame and likely exhaust
328321
# your memory and/or your patience.
329322

330323
# BUGS
331324

332-
# * Sort order is a bit strange.
333-
# * ImageMagick's Montage doesn't handle long filenames nicely.
334325
# * Some transparent images (many .eps files) presume a white background
335326
# and will not show up if your terminal's background is black.
336327
# * This file is getting awfully long for a one line kludge. :-)

0 commit comments

Comments
 (0)