Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2012-03-16 | - exif handling changed | Dennis Real | -5/+5 | |
- gps info added if available | ||||
2012-03-15 | feh_magick_load_image: close stdin as well | Daniel Friesel | -2/+2 | |
2012-03-14 | Terminate convert when receiving SIG{INT,TERM,QUIT} | Daniel Friesel | -1/+2 | |
2012-03-14 | imlib.c: "Fix" Zombie issue | Daniel Friesel | -0/+11 | |
Still to do: signal handler for sigint/quit/term | ||||
2012-03-13 | Experimental code to limit imagemagick convert runtime (see #82) | Daniel Friesel | -6/+24 | |
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-07 | Fix memory leak in feh_edit_inplace_lossless | Daniel Friesel | -1/+3 | |
2012-03-03 | magick: use correct filename | Daniel Friesel | -2/+2 | |
2012-03-03 | use convert (imagemagick) for unsupported file types | Daniel Friesel | -24/+92 | |
2012-02-06 | EXIF fixes by reald (closes #80) | Daniel Friesel | -0/+2 | |
commit 9c8226a1a54d1246e086923bb1b36e3827b25767 Merge: e4483e5 132ecc0 Author: Dennis Real <github@tildepipe.org> Date: Sun Feb 5 17:24:17 2012 +0100 Merge branch 'master' of ssh://github.com/reald/feh commit e4483e5e25a1471728a31a18d22ba86def489509 Author: Dennis Real <github@tildepipe.org> Date: Sun Feb 5 16:56:29 2012 +0100 - improved handling of images which have exif tags but not ours - fixed uninitialized pointer in thumbnail mode - added nikon lens info if available commit 132ecc0f9f0a2243c4f6745d0af36be810bf9eba Author: Dennis Real <github@tildepipe.org> Date: Sun Feb 5 16:56:29 2012 +0100 - improved handling of images which have exif tags but not ours - fixed uninitialzed pointer in thumbnail mode - added nikon lens info if available | ||||
2012-01-27 | optional exif support (build with exif=1), initial patch import | Daniel Friesel | -0/+115 | |
2012-01-25 | imlib.c: Set CURLOPT_VERBOSE when built with DEBUG | Daniel Friesel | -0/+3 | |
2012-01-02 | imlib.c: Follow HTTP redirects (Debian #653689) | Daniel Friesel | -0/+1 | |
2011-10-24 | imlib.c: Fix too long mkstemp argument (debian #646421) | Daniel Friesel | -0/+4 | |
2011-10-10 | filelist.c, imlib.c: Simplify opt.quiet handling | Daniel Friesel | -46/+33 | |
2011-10-03 | feh_display_info: Allow state to be reset for successive calls | Daniel Friesel | -0/+7 | |
Required e.g. for feh --preload --thumbnails | ||||
2011-09-28 | feh_draw_info: Do not fail if the info_cmd did not output anything | Daniel Friesel | -0/+3 | |
2011-09-12 | feh_load_image: Do not add file to rm filelist unless it is cached | Daniel Friesel | -2/+3 | |
This fixes a "memory leak" (though strictly speaking it is none) when using feh --reload on http URLs. | ||||
2011-09-02 | imlib.c: fill_text_bg: Simplify background initialization (patch by penma) | Daniel Friesel | -5/+3 | |
fixes valgrind warning about use of uninitialized values | ||||
2011-09-02 | imlib.c: Remove font loading code duplication (thx penma) | Daniel Friesel | -75/+27 | |
2011-09-01 | Revert "feh_reload_image: Always die if reload failed" | Daniel Friesel | -2/+2 | |
This reverts commit 8b79bc33f37db12cbb672bdb47dcfeb0f2030bce. | ||||
2011-08-31 | feh_reload_image: Always die if reload failed | Daniel Friesel | -2/+2 | |
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 | imlib.c: feh_draw_info: Fix overlay image dimensions (for --draw-tinted) | Daniel Friesel | -24/+37 | |
feh_draw_info used to iterate line-wise over the info output, but now we need to cache it somewhere to get the length of the longest line. | ||||
2011-08-23 | imlib.c: feh_draw_info: Fix info box offsets | Daniel Friesel | -2/+2 | |
The info text used to be located 2px away from the bottom / left edges. Now that --draw-tinted has been implemented, that leaves us with an ugly edge, so move it directly to the edge. | ||||
2011-08-23 | Add --draw-tinted option to draw overlay text on a semi-transparent ↵ | Daniel Friesel | -37/+23 | |
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-18 | imlib.c: feh_draw_info: Only kill a line's last character if it's a newline | Daniel Friesel | -1/+3 | |
feh_draw_info used to unconditionally swallow the last character of a line, assuming that it must be a newline. However, the very last line of a program's output may not end in a newline, in which case its last output character was omitted. | ||||
2011-08-09 | Merge patch by livibetter: Add flip and mirror in-place edit actions (closes ↵ | Daniel Friesel | -14/+31 | |
#53) | ||||
2011-08-09 | Add flip/mirror in-placec edit actions (derf/#9) | Yu-Jie Lin | -14/+31 | |
2011-05-31 | Fix --draw-filename "x of y" being cut off by short filenames (closes #45) | Daniel Friesel | -12/+20 | |
2011-05-12 | imlib.c: Do not include curl.h unless we use libcurl | Daniel Friesel | -0/+3 | |
2011-04-30 | Replace some printf calls by fputs/putc | Daniel Friesel | -5/+5 | |
2011-04-30 | Convert some more weprintf statements to im_weprintf | Daniel Friesel | -3/+3 | |
2011-04-30 | Initial support for in-image warning display (closes #43) | Daniel Friesel | -9/+75 | |
2011-04-27 | feh_edit_inplace_lossless_rotate: Fix rotate arg in error message | Daniel Friesel | -1/+1 | |
2011-04-27 | Merge branch 'libcurl' of git://github.com/talisein/feh | Daniel Friesel | -1/+1 | |
2011-04-26 | Only create caption directory when writing out a caption (closes #42) | Daniel Friesel | -4/+9 | |
2011-04-22 | Remove unused feh_strip_hostname function | Daniel Friesel | -25/+0 | |
2011-02-16 | Fix use after free() | Andrew Potter | -1/+1 | |
2011-02-16 | Remove builtin HTTP client | Daniel Friesel | -242/+55 | |
2011-02-16 | Make -lcurl optional (enabled by default), rework feature en-/disabling | Daniel Friesel | -0/+7 | |
2011-02-16 | Remove wget support, use libcurl by default | Daniel Friesel | -29/+0 | |
2011-02-16 | imlib.c indentation fixes | Daniel Friesel | -35/+35 | |
2011-02-16 | imlib.c: Fix segfault introdused by talisein's patch. | Daniel Friesel | -1/+1 | |
2011-02-15 | Fix errant whitespace screwup | Andrew Potter | -1/+1 | |
2011-02-15 | Initial libcurl support | Andrew Potter | -2/+53 | |
2011-02-15 | Add libcurl option -{ | Andrew Potter | -0/+3 | |
2011-02-09 | imlib.c: Use wget --no-clobber | Daniel Friesel | -1/+2 | |
This prevents a (highly unlikely) case of an attacker knowing feh's PID and the user's URL rewriting user files by means of a TOCTTOU attack. It is still possible to _create_ arbitrary files via dangling symlinks. That will be fixed once I switch from wget to libcurl. | ||||
2011-01-17 | Copyright Foo | Daniel Friesel | -0/+1 | |
2010-12-04 | imlib.c: Use getaddrinfo in builtin http client, enables IPv6 support | Pascal Bleser | -32/+20 | |
Signed-off-by: Daniel Friesel <derf@finalrewind.org> | ||||
2010-11-07 | imlib.c: Fix buffer overflow in draw_actions (thx Gabe) | Daniel Friesel | -1/+1 | |
2010-10-03 | imlib.c: Fix draw_actions offset | Daniel Friesel | -3/+1 | |