summaryrefslogtreecommitdiff
path: root/ChangeLog
AgeCommit message (Collapse)AuthorLines
2011-09-26Release v1.16.21.16.2Daniel Friesel-1/+2
2011-09-25--title-font: Re-render image after drawing titleDaniel Friesel-0/+1
2011-09-25index.c, thumbnail.c: Fix --title-font fallback to default (closes #65)Daniel Friesel-0/+1
2011-09-13Use enum for opt.image_bg, rename --image-bg default to --image-bg checksDaniel Friesel-0/+1
2011-09-12feh_load_image: Do not add file to rm filelist unless it is cachedDaniel Friesel-0/+6
This fixes a "memory leak" (though strictly speaking it is none) when using feh --reload on http URLs.
2011-09-11Aaand another regression-fix release (1.16.1)1.16.1Daniel Friesel-0/+6
2011-09-05Release v1.161.16Daniel Friesel-2/+5
2011-09-02events.c: Clean up winwid checks in ButtonPress/ButtonRelease handlersDaniel Friesel-0/+2
2011-09-02update changelogDaniel Friesel-0/+2
2011-09-02Fix memory leak in cb_reload_timer (--reload for directories) (closes #62)Daniel Friesel-0/+2
Patch by livibetter
2011-09-01feh_reload_image: Try to reload unloadable (still existing) images ad infinitumDaniel Friesel-0/+2
This commit removes the feh_file_remove_from_list call from feh_reload_image. We can safely do this because if the file itself was removed, cb_reload_timer will take care of updating the filelist, and in all other cases it is intended to leave the image in the filelist and retry. A warning will be displayed in the image if the reload failed.
2011-09-01Revert "feh_reload_image: Always die if reload failed"Daniel Friesel-1/+0
This reverts commit 8b79bc33f37db12cbb672bdb47dcfeb0f2030bce.
2011-08-31feh_reload_image: Always die if reload failedDaniel Friesel-0/+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-30winwidget.c: resize: Fix non-fulllscreen Xinerama issues on screens =! 1 ↵Daniel Friesel-1/+1
(see #5)
2011-08-29Update ChangelogDaniel Friesel-0/+2
2011-08-24--filelist: Support reading from /dev/stdin ("-" as shortcut)Daniel Friesel-0/+1
Note that read_filelist used to check if its argument was an image (for people accidentaly typing "feh -df *" instead of "feh -dF *"); this was removed because it failed on /dev/stdin. I might re-add it, but I'm not yet sure about the future of feh's automatic filelist saving.
2011-08-23Deprecate the --collage option (aka collage mode)Daniel Friesel-0/+1
It is pretty random and I doubt anyone actually uses it. Also, after removing it, there are only two duplicates of the image index code instead of three...
2011-08-23Add --draw-tinted option to draw overlay text on a semi-transparent ↵Daniel Friesel-0/+3
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--action: Reload image if hold_action flag (;) is set (closes #59)Daniel Friesel-0/+5
An action may be used to alter the image or specific parts of it displayed by --info, so if a user invokes an action with hold_action set, the image and all relevant information must be reloaded.
2011-08-16Release v1.15.11.15.1Daniel Friesel-0/+7
2011-08-15Release v1.151.15Daniel Friesel-2/+3
2011-08-15Update documentationDaniel Friesel-0/+4
2011-08-11Disable blur/rotation in thumbnail viewerDaniel Friesel-0/+1
2011-08-11Show correct file number after deleting imageDaniel Friesel-0/+2
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-10slideshow.c: save_image: Fix handling of capital file endings (closes #51)Daniel Friesel-0/+2
gib_imlib_save_image_with_error_return was used, but it tries to set the Imlib image format by examining the filename to save to. However, it only supports lowercase file endings (as in .jpg) and breaks with others (like .JPG). Since giblib is unmaintained, for now the fix is only used here.
2011-08-09Add documentation and default keybindings for flip/mirrorDaniel Friesel-0/+2
2011-08-02Update ChangelogDaniel Friesel-0/+9
2011-07-20Make --image-bg white work in full-screen modeDaniel Friesel-0/+4
2011-07-04Release v1.14.21.14.2Daniel Friesel-1/+2
2011-07-03Update ChangelogDaniel Friesel-0/+2
2011-06-07Add toggle_info key (closes #48)Daniel Friesel-0/+2
2011-06-06Respect --zoom 100 in --fullscreen mode (closes #47)Daniel Friesel-0/+3
2011-05-31Fix --draw-filename "x of y" being cut off by short filenames (closes #45)Daniel Friesel-0/+4
2011-05-19Release v1.14.11.14.1Daniel Friesel-1/+2
2011-05-19Fix typing issue in winwidget_center_imageDaniel Friesel-0/+5
2011-05-11Release v1.141.14Daniel Friesel-1/+2
2011-05-11feh_parse_options_from_string: allocate argv list on stackDaniel Friesel-0/+3
This fixes a really weird bug where continued theme definitions containing just one option/value pair caused feh to mis-parse parts of the following line. Apparently, subsequent realloc calls mixed with strdups in another function caused parts of the list (argv) content to be overwritten by the content of the list pointer itself. I wasn't able to find out the exact causes / conditions.
2011-05-10Fix zoom_default with --scale-down (closes #41)Daniel Friesel-0/+2
2011-05-10keyevents.c: Make toggle_aliasing actually affect the current windowDaniel Friesel-0/+2
2011-05-10winwidget.c: Set _NET_WM_NAME and _NET_WM_ICON_NAME, marked as utf8 (closes #44)Daniel Friesel-0/+2
Note that feh does not try to convert encodings or anything. It expects filenames to be in UTF8 and passe them on to NET_WM_NAME and NET_WM_ICON NAME. The only new thing is that it now also sets _NET_WM_NAME and _NET_WM_ICON_NAME and explicitly tells X11 that they are in UTF-8. Again, no recode, if you use UTF-8 filesystems (which you should), everything is fine.
2011-05-09Fix --zoom max/fill documentation plus bug in menu code (thx nepraith)Daniel Friesel-0/+2
2011-05-07Changelog: Fix typoDaniel Friesel-3/+3
2011-05-05Minor manpage fixes (Debian #625683)Daniel Friesel-0/+2
2011-05-03Update ChangelogDaniel Friesel-2/+7
2011-05-02Use next/prev/render keys to select images in thumbnail mode (closes #26)Daniel Friesel-0/+3
2011-04-30Do not include help text by defaultDaniel Friesel-0/+3
2011-04-30Initial support for in-image warning display (closes #43)Daniel Friesel-0/+2
2011-04-27Update ChangelogDaniel Friesel-0/+3
2011-04-27Deprecate --menu-bg option (closes #27)Daniel Friesel-1/+4
2011-04-26Update ChangelogDaniel Friesel-0/+5