aboutsummaryrefslogtreecommitdiff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve mouse supportBert Münnich2017-10-061-1/+1
| | | | | | | | | | | | 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.
* Simplify cursor handlingBert Münnich2017-10-051-1/+1
|
* Mouse drag translates pointer position to image areaBert Münnich2017-10-041-1/+1
| | | | This makes mouse panning more direct and faster.
* Fix linker command lineBert Münnich2017-09-111-1/+1
|
* Only use targets in build messagesBert Münnich2017-09-111-1/+1
|
* Move special targets to bottom of MakefileBert Münnich2017-09-081-7/+6
|
* Non-verbose buildBert Münnich2017-09-081-0/+12
| | | | Verbose when build with `V=1'.
* Support out-of-source buildsBert Münnich2017-09-081-2/+4
| | | | | 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.
* Simplify config.mkBert Münnich2017-09-081-4/+16
|
* Move configuration parts from Makefile into config.mkBert Münnich2017-09-061-26/+4
|
* Simplify autoreload backend selection in MakefileBert Münnich2017-05-171-8/+5
|
* Add autoreload support by inotify (and dummy backend nop)Max Voit2017-05-171-0/+7
|
* State the purpose of CLEANUP macroBert Münnich2017-05-171-1/+1
|
* Fix missing quote in key-handler from commit 5c607adBert Münnich2017-02-131-1/+1
|
* Pass given file names to key-handler instead of real pathsBert Münnich2017-01-071-1/+1
| | | | | | | 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.
* Fix unused-variable warnings in conditionally compiled codeBert Münnich2016-12-281-1/+1
|
* Merge vaygr/opt-depBert Münnich2016-12-281-1/+4
|\
| * Add build options for optional dependenciesVlad Glagolev2016-12-261-1/+4
|/
* Merge djhejna/floatdelayBert Münnich2016-12-011-1/+1
|\
* | Ignore button and key events while key-handler is runningBert Münnich2016-11-301-1/+1
| | | | | | | | Related to issue #253, which originally asked for a non-blocking key-handler.
* | Merge dwminer/framerateBert Münnich2016-11-281-1/+1
|/
* Use -e for X window embeddingBert Münnich2016-10-301-1/+1
|
* Only open regular files; fixes issue #252Bert Münnich2016-10-201-1/+1
|
* Allow opening directories non-recursivelyParide Legovini2016-09-281-1/+1
|
* Update unstable version numberBert Münnich2016-08-101-1/+1
|
* Use Xft for font loading and text drawingBert Münnich2016-08-061-3/+3
|
* Fix option -q; commit d3a70a2 completely broke it; fixes issue #223Bert Münnich2015-12-281-1/+1
|
* Fix 32-bit unsigned integer shiftBert Münnich2015-12-261-1/+1
|
* Make image-info script more steady to special symbols in file namesSudo Nice2015-12-251-1/+1
|
* Stable version 1.3.2Bert Münnich2015-12-201-1/+1
|
* Build-time option for default thumbnail size; fixes issue #207Bert Münnich2015-12-201-1/+1
|
* Use POSIX.1-2008 getline(3)Bert Münnich2015-10-281-1/+1
|
* Removed overcautious parameter checksBert Münnich2015-10-281-1/+1
|
* Always run image-info script after key-handler in image mode; fixes issue #213Bert Münnich2015-08-191-1/+1
|
* Thumbnail cache file format depending on existance of alpha layerBert Münnich2015-07-221-1/+1
| | | | Use PNG if image has alpha layer, JPG if not. Fixes issue #209
* Clarified comments in key-handler, fixes issue #206Bert Münnich2015-05-181-1/+1
|
* Round integer cast of image offset during rendering; fixes issue #197Bert Münnich2015-02-061-1/+1
|
* Pass real paths to key handler instead of the paths provided by the userBert Münnich2015-01-181-1/+1
| | | | | Programs called by the key handler might replace symlinks instead of their targets.
* Simplified command argumentsBert Münnich2015-01-111-1/+1
|
* Updated documentation regarding gamma correctionBert Münnich2015-01-071-1/+1
|
* The Icon key should not contain extensionValentin Hăloiu2015-01-061-1/+1
| | | | According to the official [Icon Theme Spec](http://standards.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html#icon_lookup) the Icon key in the desktop entry file should not contain the file extension.
* Apply gamma value on thumbnails too; fixes issue #193Bert Münnich2015-01-051-1/+1
|
* Use bit-field for boolean flags in fileinfo structBert Münnich2015-01-041-1/+1
|
* Removed obsolete ss_delays array, fixes issue #191Bert Münnich2014-12-221-1/+1
|
* Grouped optional dependencies in MakefileBert Münnich2014-12-081-3/+14
|
* Ignore SIGPIPE, caused by key handler exiting before all files got printed, ↵Bert Münnich2014-12-011-1/+1
| | | | fixes issue #188
* Limit thumbnail selection border width to 4pxBert Münnich2014-11-271-1/+1
|
* Stable version 1.3.1Bert Münnich2014-11-161-1/+1
|
* Added -MP dependency generation option to compile flagsBert Münnich2014-11-141-2/+2
|
* Use and depend on GNU make...Bert Münnich2014-11-021-22/+16
| | | | | | | - Use non-POSIX :=,?=,+= macro assignments, fixes issue #97 - No optimization level set in CFLAGS, expected to be set in environment - Automatic header dependency tracking with one .d file per compilation unit - Better fix for issue #181