Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-06 | Add Max Voit to list of contributors | Bert Münnich | |
2017-09-02 | Add key-handler action to copy image to clipboard | Bert Münnich | |
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 | |||
2017-05-17 | Adapt inotify_nop to API changes | Bert Münnich | |
2017-05-17 | Update copyright notice in autoreload_inotify.c | Bert Münnich | |
2017-05-17 | Merge branch 'autoreload' | Bert Münnich | |
Pull request #278. Fixes issue #29 and issue #199. | |||
2017-05-17 | Detect all file overwrites in autoreload_inotify | Bert Münnich | |
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. | |||
2017-05-17 | Compiler independent buffer alignment | Bert Münnich | |
2017-05-17 | Read all available inotify events | Bert Münnich | |
Loop reading from inotify fd in arl_handle(); requires non-blocking inotify fd. | |||
2017-05-17 | Simplify inotify cleanup | Bert Münnich | |
2017-05-17 | Revised error reporting in autoreload_inotify | Bert Münnich | |
No repeated error messages after failed initialization. No error messages on failed inotify_rm_watch(). | |||
2017-05-17 | Fix code-style in autoreload_inotify.c | Bert Münnich | |
2017-05-17 | Simplify autoreload backend selection in Makefile | Bert Münnich | |
2017-05-17 | Revised autoreload interface | Bert Münnich | |
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. | |||
2017-05-17 | Add autoreload support by inotify (and dummy backend nop) | Max Voit | |
2017-05-17 | Properly quit when window gets closed; fixes issue #27 | Bert Münnich | |
2017-05-17 | State the purpose of CLEANUP macro | Bert Münnich | |
2017-02-15 | Merge branch 'diogocp/patch-1' | Bert Münnich | |
2017-02-15 | Fix typo | Jakub Wilk | |
2017-02-13 | Fix missing quote in key-handler from commit 5c607ad | Bert Münnich | |
2017-01-27 | Add Netpbm, TGA and XPM MIME types to sxiv.desktop | Diogo Pereira | |
These formats are also supported by imlib2. | |||
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-11-28 | Support for DELAY as a floating point number including less than 1 | Don Hejna | |
second while maintaining backward compatibiitiy with integer arguments. | |||
2016-11-27 | Document -A option | dwminer | |
2016-11-27 | Add -A option to force framerate on animated images | dwminer | |
2016-10-30 | Document new -e flag | Bert Münnich | |
2016-10-30 | Use -e for X window embedding | Bert Münnich | |
2016-10-29 | added support for XEMBED into other windows (ie tabbed) with -w | shuall | |
2016-10-20 | Only open regular files; fixes issue #252 | Bert Münnich | |
2016-10-17 | Silence error messages in image-info script | 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-08 | Add TODO list | Bert Münnich | |
2016-08-06 | Use Xft for font loading and text drawing | Bert Münnich | |
2016-08-06 | Provide image width and height to image-info script; fixes issue #159 | Bert Münnich | |
2016-02-12 | Removed usage information from README, refer to man page | Bert Münnich | |
2016-02-12 | Refined grouping of key/mouse mappings in man page | Bert Münnich | |
2015-12-28 | Fix option -q; commit d3a70a2 completely broke it; fixes issue #223 | Bert Münnich | |
2015-12-26 | Make navigate_frame command respect a count prefix | 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 | Simplified r_mkdir() | Bert Münnich | |
2015-10-28 | Revised error handling | Bert Münnich | |
- Functions warn() and die() replaced by GNU-like error(3) function - Register cleanup() with atexit(3) - Functions called by cleanup() are marked with CLEANUP and are not allowed to call exit(3) |