Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-23 | List objs in Makefile not srcs | Bert Münnich | |
2017-10-23 | Make clean removes all object files | Bert Münnich | |
2017-10-22 | Always take {C,CPP,LD}FLAGS from environment | Bert Münnich | |
Our own default values go into accompanying macros prefixed with DEF_. | |||
2017-10-19 | Back to VPATH for out-of-source builds | Bert Münnich | |
OpenBSD make supports VPATH but not pattern rules. Everything in the new Makefile should work no matter what make program is used. | |||
2017-10-19 | Addendum to 1ace4fb0 | Bert Münnich | |
2017-10-16 | No more automatic dependency tracking | Bert Münnich | |
The new Makefile should work with the make programs shipped with FreeBSD, NetBSD and OpenBSD. | |||
2017-10-16 | No more config.mk | Bert Münnich | |
2017-10-16 | Small refinements in Makefile | Bert Münnich | |
2017-10-16 | Fix dep file include in Makefile | Bert Münnich | |
2017-10-16 | Zoom into mouse cursor position | Bert Münnich | |
2017-10-12 | Much more portable Makefile | Bert Münnich | |
The config.mk file is now optional and only needs to be created if one wants to persistently overwrite default macro values. Features used in the Makefile that are not yet in the POSIX standard: - Advanced macro assignment operators '+=' and '?=' [1] - Special target .PHONY [2] - Pattern rules [3]; only needed when $srcdir != '.'. For every pattern rule there is an inference rule with the same effect. Hopefully, the inference rules get picked up by make programs not supporting pattern rules. - Silently including multiple possibly not exisiting files [4] [5] [1] http://austingroupbugs.net/view.php?id=330 [2] http://austingroupbugs.net/view.php?id=523 [3] http://austingroupbugs.net/view.php?id=513 [4] http://austingroupbugs.net/view.php?id=333 [5] http://austingroupbugs.net/view.php?id=518 | |||
2017-10-08 | Always include non-configurable part of CPPFLAGS | Bert Münnich | |
2017-10-08 | Move DEPFLAGS from Makefile to config.mk | Bert Münnich | |
2017-10-08 | Mention GNU make requirement in Makefile | Bert Münnich | |
2017-10-08 | Get rid of SRCDIR macro, VPATH on make cmd line suffices | Bert Münnich | |
2017-10-06 | Improve mouse support | Bert Münnich | |
None of the mouse mappings uses a keyboard modifier, making it possible to access the most basic features by only using the mouse. Next/previous image with left button depending on cursor position, middle button for dragging, right button for switching to thumnail mode and wheel for zooming. Users can keep the old behaviour by simply not adapting the changes to the buttons array in config.def.h to their config.h file. | |||
2017-10-05 | Simplify cursor handling | Bert Münnich | |
2017-10-04 | Mouse drag translates pointer position to image area | Bert Münnich | |
This makes mouse panning more direct and faster. | |||
2017-09-11 | Fix linker command line | Bert Münnich | |
2017-09-11 | Only use targets in build messages | Bert Münnich | |
2017-09-08 | Move special targets to bottom of Makefile | Bert Münnich | |
2017-09-08 | Non-verbose build | Bert Münnich | |
Verbose when build with `V=1'. | |||
2017-09-08 | Support out-of-source builds | Bert Münnich | |
Fixes issue #167. Long after closing this issue (kind of wontfix) we have switched to GNU make and can thus use its features like VPATH. | |||
2017-09-08 | Simplify config.mk | Bert Münnich | |
2017-09-06 | Move configuration parts from Makefile into config.mk | Bert Münnich | |
2017-05-17 | Simplify autoreload backend selection in Makefile | Bert Münnich | |
2017-05-17 | Add autoreload support by inotify (and dummy backend nop) | Max Voit | |
2017-05-17 | State the purpose of CLEANUP macro | Bert Münnich | |
2017-02-13 | Fix missing quote in key-handler from commit 5c607ad | Bert Münnich | |
2017-01-07 | Pass given file names to key-handler instead of real paths | Bert Münnich | |
Misbehaving command lines in the key-handler that rewrite the given files and thus replace symbolic links instead of their targets shall call realpath(1). Fixes issue #205 and reverts commit 92e3b578. | |||
2016-12-28 | Fix unused-variable warnings in conditionally compiled code | Bert Münnich | |
2016-12-28 | Merge vaygr/opt-dep | Bert Münnich | |
2016-12-27 | Add build options for optional dependencies | Vlad Glagolev | |
2016-12-01 | Merge djhejna/floatdelay | Bert Münnich | |
2016-11-30 | Ignore button and key events while key-handler is running | Bert Münnich | |
Related to issue #253, which originally asked for a non-blocking key-handler. | |||
2016-11-28 | Merge dwminer/framerate | Bert Münnich | |
2016-10-30 | Use -e for X window embedding | Bert Münnich | |
2016-10-20 | Only open regular files; fixes issue #252 | Bert Münnich | |
2016-09-28 | Allow opening directories non-recursively | Paride Legovini | |
2016-08-10 | Update unstable version number | Bert Münnich | |
2016-08-06 | Use Xft for font loading and text drawing | Bert Münnich | |
2015-12-28 | Fix option -q; commit d3a70a2 completely broke it; fixes issue #223 | Bert Münnich | |
2015-12-26 | Fix 32-bit unsigned integer shift | Bert Münnich | |
2015-12-25 | Make image-info script more steady to special symbols in file names | Sudo Nice | |
2015-12-20 | Stable version 1.3.2v1.3.2 | Bert Münnich | |
2015-12-20 | Build-time option for default thumbnail size; fixes issue #207 | Bert Münnich | |
2015-10-28 | Use POSIX.1-2008 getline(3) | Bert Münnich | |
2015-10-28 | Removed overcautious parameter checks | Bert Münnich | |
2015-08-19 | Always run image-info script after key-handler in image mode; fixes issue #213 | Bert Münnich | |
2015-07-22 | Thumbnail cache file format depending on existance of alpha layer | Bert Münnich | |
Use PNG if image has alpha layer, JPG if not. Fixes issue #209 |