Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2016-08-28 | dedup key/button initialization | Daniel Friesel | -0/+1 | |
2016-08-27 | Key actions can now also be bound to buttons. not vice versa, though | Daniel Friesel | -0/+1 | |
2016-05-28 | Add prev_dir and next_dir navigation actions | guns | -1/+3 | |
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 | ||||
2015-04-07 | fix gib_imlib_save_image_with_error_return in imported giblib code | Daniel Friesel | -2/+0 | |
2014-05-06 | remove gib_utils, the same functionality is provided by utils already | Daniel Friesel | -1/+0 | |
2014-05-04 | strip unneded parts from giblib, part 1 | Daniel Friesel | -1/+5 | |
Not all functions were examined yet. Also TODO: * check strdup / malloc calls (some are apparently unchecked in giblib), maybe use estrdup / emalloc for those * Check includes and update dependency list if needed | ||||
2014-04-26 | respect --image-bg=checks in fullscreen mode (closes #156) | Daniel Friesel | -1/+1 | |
2012-09-12 | print imlib2 error strings when save failed | Daniel Friesel | -0/+1 | |
2012-09-12 | Proper workaround for broken gib_imlib_save_image_with_error_return | Daniel Friesel | -0/+2 | |
2012-08-12 | Add %o, %r and %z format specifiers (see #95) | Daniel Friesel | -2/+2 | |
2012-03-13 | Experimental code to limit imagemagick convert runtime (see #82) | Daniel Friesel | -0/+3 | |
Problems so far: * leaks zombie processes * does not work when terminating feh with a signal (since the convert process is no longer in feh's process group) | ||||
2012-03-03 | use convert (imagemagick) for unsupported file types | Daniel Friesel | -1/+0 | |
2012-02-26 | feh_printf: Fix/Add %S/%P for human-readable sizes, use them in --list | Daniel Friesel | -0/+1 | |
2012-01-27 | optional exif support (build with exif=1), initial patch import | Daniel Friesel | -0/+3 | |
2011-09-28 | Use buttons config instead of button options | Daniel Friesel | -0/+1 | |
2011-09-28 | Set max/min zoom for both key and mouse zooming | Daniel Friesel | -0/+3 | |
2011-09-13 | Use enum for opt.image_bg, rename --image-bg default to --image-bg checks | Daniel Friesel | -0/+2 | |
2011-09-01 | Revert "feh_reload_image: Always die if reload failed" | Daniel Friesel | -1/+1 | |
This reverts commit 8b79bc33f37db12cbb672bdb47dcfeb0f2030bce. | ||||
2011-08-31 | feh_reload_image: Always die if reload failed | Daniel Friesel | -1/+1 | |
This fixes a segfault in --reload when the image becomes unloadable while feh is running. Note that this does not affect --reload with more than one file: If the current image is removed, feh will simply jump to the next image. feh will only quit if the file still exists, but can no longer be loaded. | ||||
2011-08-23 | Fix default zoom behaviour | Daniel Friesel | -1/+1 | |
67e41d607413d8e95124b1d28b6ae74924e74ab9 moved the ZOOM_MODE from options.h defines to a feh.h enum, but did not set the values correctly. | ||||
2011-08-23 | Add --draw-tinted option to draw overlay text on a semi-transparent ↵ | Daniel Friesel | -0/+4 | |
background (closes #60, #61) By default, feh draws white text with a black drop-shadow, which is well readable in most, but not all cases. The --draw-tinted option draws a semi-transparent black box around all texts. This improves readability, but does not look as nice, so it won't become default behaviour. It was suggested to use #7f7f7f7f for the background, but I decided that for small images surrounded by a black border. | ||||
2011-08-11 | Show correct file number after deleting image | Daniel Friesel | -1/+1 | |
In the image_remove function, slideshow_change_image needs to be called before removing the image from the filelist. Because of this, the "x of y" displayed by --draw-filename is wrong (y is 1 too high). This commit introduces a new 'render' argument to slideshow_chingae_image. The image_remove function calls it with render=0, edits the filelist and then runs by winwidget_render_image itself. Patch by Yu-Jie Lin. | ||||
2011-08-09 | Merge patch by livibetter: Add flip and mirror in-place edit actions (closes ↵ | Daniel Friesel | -2/+5 | |
#53) | ||||
2011-08-09 | Add flip/mirror in-placec edit actions (derf/#9) | Yu-Jie Lin | -0/+3 | |
2011-04-30 | Initial support for in-image warning display (closes #43) | Daniel Friesel | -0/+2 | |
2011-04-26 | Only create caption directory when writing out a caption (closes #42) | Daniel Friesel | -1/+1 | |
2011-04-22 | Remove unused feh_strip_hostname function | Daniel Friesel | -1/+0 | |
2011-01-17 | Copyright Foo | Daniel Friesel | -0/+1 | |
2011-01-13 | First step towards configurable key bindings | Daniel Friesel | -0/+1 | |
2010-12-04 | imlib.c: Use getaddrinfo in builtin http client, enables IPv6 support | Pascal Bleser | -1/+0 | |
Signed-off-by: Daniel Friesel <derf@finalrewind.org> | ||||
2010-09-10 | Add --info option | Daniel Friesel | -0/+1 | |
2010-08-27 | Remove --bg-seamless | Daniel Friesel | -1/+1 | |
2010-08-27 | Patch by Stefan Mark: Add --bg-max wallpaper mode | Daniel Friesel | -1/+1 | |
2010-07-08 | index.c: Remove unused function chop_file_From_full_path | Daniel Friesel | -1/+0 | |
2010-06-12 | Remove ipc.c/ipc.s, they seem to be used nowhere | Daniel Friesel | -1/+0 | |
2010-06-11 | debug.h: call_level is no longer relevant, pretty debug message format | Daniel Friesel | -1/+0 | |
2010-06-10 | options.c: show_usage etc. aren't used elsewhere | Daniel Friesel | -2/+0 | |
2010-05-03 | Fix remaining compiler warnings (I probably won't implement these options ↵ | Daniel Friesel | -1/+1 | |
anyways) | ||||
2010-03-23 | Implement random slideshow jump ('z') | Decklin Foster | -1/+1 | |
2010-03-21 | Remove autoconf (from branch 'autocruft') | Daniel Friesel | -2/+0 | |
Use config.mk for configuration, both GNU make and FreeBSD make are supported. | ||||
2010-03-21 | Fix a few compiler warnings (-Wall -Wextra) | Daniel Friesel | -0/+1 | |
2010-03-01 | Apply patchto add --bg-fill (fullscreen background preserving aspect ratio) | Daniel Friesel | -2/+2 | |
2010-02-13 | Change source code indentation (indent -kr -i8 -hnl, mainly) | Daniel Friesel | -16/+15 | |
2010-02-08 | Make -O work without X as well. Closes bugs.debian.org #373209 | Daniel Friesel | -0/+1 | |
2010-02-05 | Initial commit (upstream 1.3.4) | Daniel Friesel | -0/+178 | |