aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Mention GNU make requirement in MakefileBert Münnich2017-10-081-0/+2
|
* Get rid of SRCDIR macro, VPATH on make cmd line sufficesBert Münnich2017-10-082-6/+2
|
* Add missing description for Button3 to man pageBert Münnich2017-10-061-0/+2
|
* Improve mouse supportBert Münnich2017-10-068-34/+52
| | | | | | | | | | | | 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 reset in image modeBert Münnich2017-10-052-3/+3
| | | | | No need to give cursor name. reset_cursor() is now the only place to decide what cursor to fall back to.
* Own win method for mouse cursor locationBert Münnich2017-10-053-6/+16
|
* Simplify cursor handlingBert Münnich2017-10-053-32/+25
|
* Mouse drag translates pointer position to image areaBert Münnich2017-10-047-64/+40
| | | | 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
|
* Add -p flag to disable writing of cache and temporary filesAntti Korpi2017-09-084-4/+16
| | | | Closes #285.
* 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-082-2/+6
| | | | | 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-082-16/+21
|
* Move configuration parts from Makefile into config.mkBert Münnich2017-09-062-26/+28
|
* Make pan fraction configurablejcalve2017-09-062-3/+6
|
* Add Max Voit to list of contributorsBert Münnich2017-09-061-0/+1
|
* Add key-handler action to copy image to clipboardBert Münnich2017-09-021-1/+2
| | | | | | | | | Thanks ploth for coming up with this: https://github.com/muennich/sxiv/issues/247#issuecomment-321316306 Replaces optional dependency on xsel(1) to xclip(1) as it supports this. Fixes issue #247
* Adapt inotify_nop to API changesBert Münnich2017-05-171-9/+8
|
* Update copyright notice in autoreload_inotify.cBert Münnich2017-05-171-1/+1
|
* Merge branch 'autoreload'Bert Münnich2017-05-175-3/+219
|\ | | | | | | | | | | Pull request #278. Fixes issue #29 and issue #199.
| * Detect all file overwrites in autoreload_inotifyBert Münnich2017-05-173-72/+51
| | | | | | | | | | | | | | | | | | | | | | | | mv(1) inside the same filesystem was not detected. Supporting this case made it necessary to always watch the directory. Turns out the logic and state keeping between arl_setup() and arl_handle() is easier, when using different watch descriptors for the file and the directory and not using a oneshot descriptor for the file. Requiring an absolute canonical path for arl_setup() simplifies dir and base name splitting. No need for dirname(3) and basename(3) anymore.
| * Compiler independent buffer alignmentBert Münnich2017-05-171-3/+7
| |
| * Read all available inotify eventsBert Münnich2017-05-171-27/+32
| | | | | | | | Loop reading from inotify fd in arl_handle(); requires non-blocking inotify fd.
| * Simplify inotify cleanupBert Münnich2017-05-171-2/+2
| |
| * Revised error reporting in autoreload_inotifyBert Münnich2017-05-171-20/+11
| | | | | | | | | | No repeated error messages after failed initialization. No error messages on failed inotify_rm_watch().
| * Fix code-style in autoreload_inotify.cBert Münnich2017-05-171-38/+23
| |
| * Simplify autoreload backend selection in MakefileBert Münnich2017-05-171-8/+5
| |
| * Revised autoreload interfaceBert Münnich2017-05-174-91/+100
| | | | | | | | | | | | | | | | | | | | | | | | Make the header only contain the public interface and nothing from the implementation. All functions get a handle to their self object, like the img_ and tns_ and win_ functions. All necessary data (file path) is also passed as an argument, so that no extern redeclarations are needed. Make arl_setup_dir() private, it's not called outside the module. Make arl_handle() return true if the file has changed, so that the reloading of the file can be done by the caller.
| * Add autoreload support by inotify (and dummy backend nop)Max Voit2017-05-175-1/+247
|/
* Properly quit when window gets closed; fixes issue #27Bert Münnich2017-05-171-1/+1
|
* State the purpose of CLEANUP macroBert Münnich2017-05-172-1/+5
|
* Merge branch 'diogocp/patch-1'Bert Münnich2017-02-151-1/+1
|\
| * Add Netpbm, TGA and XPM MIME types to sxiv.desktopDiogo Pereira2017-01-271-1/+1
| | | | | | These formats are also supported by imlib2.
* | Fix typoJakub Wilk2017-02-151-1/+1
| |
* | Fix missing quote in key-handler from commit 5c607adBert Münnich2017-02-132-2/+2
|/
* Pass given file names to key-handler instead of real pathsBert Münnich2017-01-073-3/+3
| | | | | | | 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-282-4/+3
|
* 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-016-9/+17
|\
| * Support for DELAY as a floating point number including less than 1Don Hejna2016-11-276-11/+12
| | | | | | | | | | second while maintaining backward compatibiitiy with integer arguments.
* | Ignore button and key events while key-handler is runningBert Münnich2016-11-302-1/+10
| | | | | | | | Related to issue #253, which originally asked for a non-blocking key-handler.
* | Merge dwminer/framerateBert Münnich2016-11-286-4/+22
|\ \ | |/ |/|
| * Document -A optiondwminer2016-11-271-0/+5
| |
| * Add -A option to force framerate on animated imagesdwminer2016-11-274-2/+14
|/
* Document new -e flagBert Münnich2016-10-301-0/+6
|
* Use -e for X window embeddingBert Münnich2016-10-304-16/+13
|
* added support for XEMBED into other windows (ie tabbed) with -wshuall2016-10-284-3/+16
|