summaryrefslogtreecommitdiff
path: root/man
AgeCommit message (Collapse)AuthorLines
2018-03-05feh(1): Fix misleading argument specification for --geometryDaniel Friesel-1/+1
Closes #386
2018-02-28Explicitly document index and thumbnail mode optionsDaniel Friesel-20/+25
Closes #272
2018-02-28Add toggle_auto_zoom key binding, defaulting to ZDaniel Friesel-0/+4
Closes #218
2018-02-28feh(1): Note that --bg-{center,fill} respect --image-bgDaniel Friesel-2/+5
2018-02-28Respect --geometry in --bg-fill (closes #209)Daniel Friesel-5/+5
2018-02-28Document --version-sort in feh(1)Daniel Friesel-3/+16
2018-02-28Add Makefile flag to disable version sorting on C libraries without strverscmpDaniel Friesel-1/+3
2018-02-28feh(1): Show state of optional switches right next to themDaniel Friesel-5/+6
2018-02-27Update feh(1)Daniel Friesel-4/+10
2018-02-27Merge branch 'custom-background-color' of https://github.com/ulteq/feh into ↵Daniel Friesel-1/+1
ulteq-custom-background-color
2018-02-10feh(1): Document current theme quoting and parser behaviourDaniel Friesel-7/+18
2018-01-30Replace outdated /opt/images example path with ~/PicturesDaniel Friesel-16/+16
2018-01-29feh(1): Note that --magick-timeout will clutter /tmpDaniel Friesel-0/+13
FWIW: This behaviour was already present before 394517d1c66783c4e1d044f79df9ef1703a6f5db
2018-01-17Allow any XColor values as --image-bg argumentPaul O'Day-1/+1
2017-12-28Document --cache-size in feh(1)Daniel Friesel-0/+10
2017-09-16Add toggle_fixed_geometry ("g") keybinding to enable/disable window auto-resizeDaniel Friesel-0/+4
Closes #326
2017-09-07Add terminal key input to manpageDaniel Friesel-3/+12
2017-06-20Make key names in KEYS section more consistent with X11 keysyms (#304)Daniel Friesel-9/+17
2017-06-18Use X11-style key names in the feh(1) KEYS sectionDaniel Friesel-4/+4
closes #302
2017-06-01feh(1): files are saved in the current working directory (closes #300)Daniel Friesel-7/+6
2017-04-16feh(1): Note that --fullscreen and --scale-down do not affect thumbnail listsDaniel Friesel-1/+8
closes #270
2017-01-15feh(1): Update giflib notesDaniel Friesel-4/+5
2017-01-02feh(1): Move --index-info to INDEX AND THUMBNAIL MODE OPTIONS (closes #267)Daniel Friesel-26/+28
2016-12-07feh(1): Add note about background setting in GNOME (#225)Daniel Friesel-0/+11
2016-11-01Release v2.182.18Daniel Friesel-2/+2
2016-10-31feh(1): Add --auto-rotateDaniel Friesel-0/+5
2016-10-17Properly initialize zoom_fill key binding, set it to ! (exclamation mark)Daniel Friesel-1/+1
2016-10-15Added missing man updateErnie Ewert-0/+5
2016-10-01feh(1): Remove accidentally copypasted debug info from exif=1 noteDaniel Friesel-1/+1
2016-09-06minor manpage updates/rewritesDaniel Friesel-19/+21
2016-08-28update manpageDaniel Friesel-35/+8
2016-08-28merge next(_img), prev(_img) and (toggle_)menuDaniel Friesel-3/+3
2016-08-27feh(1): BUTTONS: Note that key actions can also be bound to buttonsDaniel Friesel-2/+5
2016-07-25feh(1): Details on in place editingDaniel Friesel-12/+8
2016-07-22Small typo in man pageThibaut Selingue-1/+1
2016-05-28Add prev_dir and next_dir navigation actionsguns-0/+6
Many image collections are organized by directory, so it is nice to have jump-to-adjacent-directory navigation. e.g. Given the following file hierarchy: . ├── A │   ├── 1.jpg │   ├── 2.jpg │   └── C │   ├── 1.jpg │   ├── 2.jpg │   └── 3.jpg └── B ├── 1.jpg ├── 2.jpg └── 3.jpg `feh --recursive` creates the following filelist: A/1.jpg <---- current_file A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg B/2.jpg B/3.jpg If we press [next_dir], we move the current_file pointer to: A/1.jpg A/2.jpg A/C/1.jpg <-- current_file A/C/2.jpg A/C/3.jpg B/1.jpg B/2.jpg B/3.jpg Pressing [next_dir] again moves the pointer to: A/1.jpg A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg <---- current_file B/2.jpg B/3.jpg [next_dir] now moves the pointer back to the top of the list: A/1.jpg <---- current_file A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg B/2.jpg B/3.jpg Pressing [prev_dir] from here moves backwards to the first image of the previous directory: A/1.jpg A/2.jpg A/C/1.jpg A/C/2.jpg A/C/3.jpg B/1.jpg <---- current_file B/2.jpg B/3.jpg When starting from an position that is not the first image of a directory, [prev_dir] moves the pointer to the first image of the current directory. These actions combine well with `--sort dirname` since all regular files in a directory will be sorted before any subdirectories, avoiding a filelist like the following: A/1.jpg A/SUBDIR/2.jpg A/SUBDIR/3.jpg A/4.jpg With `--sort dirname` that filelist becomes: A/1.jpg A/4.jpg A/SUBDIR/2.jpg A/SUBDIR/3.jpg
2016-05-28New sort option: dirnameguns-4/+4
Sort filelist by dirname, then by name. This results in file entries sorting before subdirectory entries. Useful in conjunction with upcoming prev_dir and next_dir navigation actions.
2016-04-24update feh(1) --geometry and --scale-downDaniel Friesel-3/+6
2016-04-14also respect w key in --geometry mode, update changelog and manualDaniel Friesel-0/+3
2016-04-09changelog, BC case or [ -L %F ] and similar actions using /bin/[Daniel Friesel-2/+10
2016-04-09feh(1): update --action partDaniel Friesel-6/+8
2016-02-26Add "--no-recursive" to man pageguraga-0/+5
Add description of option "--no-recursive" to man page.
2016-02-20update year in copyright noticeDaniel Friesel-1/+1
2016-02-16update test skip conditions and noticeDaniel Friesel-3/+5
Turns out giflib 5.1.2 is the culprit and it isn't Deban-specific after all.
2016-02-15skip all tests on debian arm* / mips* (broken Imlib2, again)Daniel Friesel-3/+7
2016-02-10add preliminary action-title support (#224)Daniel Friesel-1/+11
2016-02-04manpages: Set date to release date instead of build dateDaniel Friesel-1/+1
This should also help distributions working towards reproducible builds.
2016-02-04Hi, I'd like one bugfix release to go please!Daniel Friesel-0/+9
2016-01-26feh(1): --index-info: Add note about empty info stringDaniel Friesel-0/+4
2016-01-07Changes:William Woodruff-0/+6
* Added an --insecure option to disable host/peer verification in libcurl. This allows feh to load images on HTTPS hosts with self-signed certificates. For security, this is not the default. * Fixed an include in show_usage.