Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2019-02-11 | remove debug printf3.1.2 | Daniel Friesel | -1/+0 | |
2018-12-23 | Remove useless assignments | Pavel Shlyak | -2/+0 | |
It is a naive way of fixing it :) Needs attentive review | ||||
2018-08-19 | Antialias rotated images even at native resolution | ulteq | -1/+1 | |
Partial fix of: #310 | ||||
2018-07-17 | Improve screen clip feature | ulteq | -6/+10 | |
2018-06-27 | Merge branch 'simplify-zoom' of https://github.com/ulteq/feh into ↵ | Daniel Friesel | -157/+56 | |
ulteq-simplify-zoom | ||||
2018-05-11 | Update copyright notice | Daniel Friesel | -1/+1 | |
2018-05-11 | Show correct filelist position in windows opened from thumbnail mode | Daniel Friesel | -2/+0 | |
Addresses part of issue #75 | ||||
2018-03-10 | Adapt the new --offset option | ulteq | -16/+6 | |
2018-03-10 | Simplify --keep-zoom-vp handling | ulteq | -6/+7 | |
2018-03-10 | Fix indentation | ulteq | -11/+10 | |
2018-03-10 | Remove unused code | ulteq | -8/+0 | |
2018-03-10 | Fix --screen-clip window dimension calculation | ulteq | -2/+6 | |
2018-03-10 | Fix window auto-resize with --keep-zoom-vp enabled | ulteq | -1/+2 | |
--keep-zoom-vp will no longer block the dynamic window resizing mechanism. | ||||
2018-03-10 | Remove duplicate bounds checking | ulteq | -6/+0 | |
2018-03-10 | Run draw checks after zoom calculation | ulteq | -8/+8 | |
2018-03-10 | Fix draw checks condition | ulteq | -2/+3 | |
2018-03-10 | Allow empty string as --geometry argument | ulteq | -1/+1 | |
Passing an empty string to the --geometry option will enable fixed geometry mode without having to specify anything else | ||||
2018-03-10 | Fix zoom ratio calculation | ulteq | -103/+20 | |
This simplifies the logic behind the automatic zoom ratio calculation, which is used by both --auto-zoom and --scale-down. | ||||
2018-03-09 | rename --inner-geometry to --offset, discard width and height values | Daniel Friesel | -8/+8 | |
2018-03-08 | add (experimental and still slightly buggy) --inner-geometry feature | Daniel Friesel | -0/+26 | |
See #278 | ||||
2018-02-27 | Merge branch 'custom-background-color' of https://github.com/ulteq/feh into ↵ | Daniel Friesel | -12/+14 | |
ulteq-custom-background-color | ||||
2018-02-14 | Only check image dimensions on the fly in multiwindow and slideshow mode | Daniel Friesel | -1/+1 | |
This introduces a new feh_should_ignore_image function which is called at appropriate places in those modes to skip images which are loadable but undesired. | ||||
2018-01-24 | Simplify window title generation | ulteq | -21/+8 | |
2018-01-17 | Allow any XColor values as --image-bg argument | Paul O'Day | -12/+14 | |
2017-12-28 | Only calculate needed zoom when necessary | ulteq | -6/+4 | |
This will prevent unnecessary calls to 'feh_calc_needed_zoom' | ||||
2017-12-27 | Utilize the imlib cache properly | ulteq | -1/+1 | |
This prevents removing the image data from the cache, when moving back and forth between images. As suggested by the Imlib documentation: http://alien.cern.ch/cache/imlib2-1.0.6/doc/ | ||||
2017-12-07 | Disable automatic zoom adjustment of thumbnail windows | Daniel Friesel | -4/+4 | |
Closes #351 | ||||
2017-02-26 | Also update window title for thumbnail windows (closes #280) | Daniel Friesel | -3/+8 | |
2017-02-23 | Fix memory leak when closing images opened from thumbnail mode | Daniel Friesel | -0/+2 | |
2017-02-16 | I made a derp2.18.2 | Daniel Friesel | -1/+1 | |
2017-01-11 | rewrite window title whenever the image is rendered (closes #266) | Daniel Friesel | -0/+6 | |
2016-08-31 | winwidget: hostname always has a trailing null byte in the !HOST_NAME_MAX branch | Daniel Friesel | -1/+0 | |
2016-08-31 | Only use sysconf() if HOST_NAME_MAX is undefined | Niclas Zeising | -2/+15 | |
On some systsems sysconf() can return a very large value, unsuitable for use with malloc(). Only use sysconf() if HOST_NAME_MAX isn't avalable. | ||||
2016-08-31 | Fix build on FreeBSD. | Niclas Zeising | -6/+12 | |
FreeBSD lacks the constant HOST_NAME_MAX, instead using sysconf(3) to find out the value of the maximum host name length at run time. Patch to use this instead of HOST_NAME_MAX. This brings with it the need to use malloc instead of using a statically sized buffer for the host name, since the size of the buffer cannot be known at run time. Errors from sysconf or malloc just means that the entire block of code is skipped over (the same way it's skipped if the call to gethostname() fails), rather than returning any kind of error to the caller or logging an error message somewhere. | ||||
2016-08-28 | Only set _NET_WM_PID once, also set WM_CLIENT_MACHINE | Daniel Friesel | -6/+14 | |
2016-08-27 | Add support for _NET_WM_PID | Klee Dienes | -0/+6 | |
2016-04-24 | winwidget_render_image: re-zoom image in scaledown/geometry mode after ↵ | Daniel Friesel | -2/+11 | |
ConfigureNotify event | ||||
2016-04-16 | bugfix and version bump (closes #230)2.15.2 | Daniel Friesel | -1/+1 | |
2016-04-14 | also respect w key in --geometry mode, update changelog and manual | Daniel Friesel | -1/+2 | |
2016-04-13 | fix image resize for w key and menu option (#229) | Daniel Friesel | -4/+9 | |
2015-11-15 | winwidget.c: never scale down thumbnail list window | Daniel Friesel | -1/+3 | |
this fixes a segfault when combining --scale-down and --thumbnails on a sufficiently large directory | ||||
2015-11-15 | zoom: implement scale-down without flicker | Richard Molitor | -25/+8 | |
this actually uses the old "force geometry" workaround to get the scale down behaviour (which makes the code a lot cleaner) by first setting the geometry after the window is created (to avoid creating a 0x0 sized window, which X does not like). | ||||
2015-11-15 | events: also react to ConfigureNotify after mapping | Richard Molitor | -0/+10 | |
2015-07-23 | use --xinerama-index instead of XINERAMA_INDEX to override xinerama screen ↵ | Daniel Friesel | -2/+2 | |
selection | ||||
2015-05-23 | winwidget: resize: only check scale_down when not in fullscreen mode (closes ↵ | Daniel Friesel | -2/+2 | |
#192) | ||||
2015-01-09 | Make --scale-down work with --geometry. | Ilion Beyst | -22/+33 | |
2014-04-26 | respect --image-bg=checks in fullscreen mode (closes #156) | Daniel Friesel | -3/+11 | |
2013-07-28 | initialize mwmhints to 0 | Brian Mattern | -2/+2 | |
2013-02-24 | comparing floats with == and != is bad indeed. | Daniel Friesel | -1/+1 | |
2013-02-14 | Determine active Xinerama screen by pointer position | Daniel Friesel | -6/+11 | |