summaryrefslogtreecommitdiffstats
path: root/main.c
AgeCommit message (Collapse)Author
2014-08-16Generalized thumbnail loading, allows easier reloading of thumbnails later onBert Münnich
2014-07-28Overhauled window drawing, yet again; fixes issue #155Bert Münnich
- Buffer for window content is bigger than the window, minimizes artifacts when window is resized - Back to using XSetWindowBackgroundPixmap() instead of XCopyArea(), no need to handle exposure events; X server can show gray background directly after resize event before sxiv redraws the window contents
2014-07-23Added support for multiple commands per key/button mapping; elegant fix for ↵Bert Münnich
issue #150
2014-07-23Revised command structure and key and mouse button mappingsBert Münnich
2014-06-15Show key handler status in bar while it is runningBert Münnich
2014-05-24Timeout initial redrawMiroslav Koskar
2014-03-17Use real path of all files internally, requires _XOPEN_SOURCE>=500, fixes ↵Bert Münnich
issue #137
2014-02-18Warn once when external key combo is used and key-handler not installedBert Münnich
2014-02-02Unified X atom initializationBert Münnich
2014-01-31Merged pull request #129Bert Münnich
2014-01-31Use a prefix key to execute the key handlerAndrás Mohari
The default prefix key is C-x, and can be changed in config.def.h. The first key pressed after the prefix key will be passed the external key handler, unless the key is Escape, which is used to cancel the prefix.
2014-01-11Double click on thumbnail to open imageBert Münnich
2014-01-11Adhere to XDG Base Directory Specification; fixes issue #124Bert Münnich
2014-01-09Allow config.h to use multimedia keys (XF86_XK_*); fixes issue #123Bert Münnich
2014-01-08Fixed handling of overloaded key mappingsBert Münnich
Issue described here: https://bbs.archlinux.org/viewtopic.php?pid=1117294#p1117294
2014-01-08Fixup for 9574150Bert Münnich
2014-01-08Check file modification time after key handlerBert Münnich
2014-01-08Fixed slideshow delay corruption after GIF animationBert Münnich
2014-01-04Slideshow mode is back, in a simplified versionBert Münnich
2014-01-02Moved external shell commands into exec/key-handler scriptBert Münnich
Gets called on all unset key mappings. Arguments are: key combo and current file. Thanks to Francesco Orsenigo (xarvh) for the idea.
2014-01-02Proper support for Ctrl/Shift/Alt modifiers in key & mouse mappingsBert Münnich
2013-11-17Close info file descriptor after readingBastien Dejean
2013-11-16Fixed segfault when removing first image from file list, fixes issue #112Bert Münnich
2013-11-14Refactored remote changesBert Münnich
2013-11-14Merge remote-tracking branch 'ariand/gamma'Bert Münnich
2013-11-14Highlight edges of marked images in thumbnail modeBert Münnich
2013-11-13Add support for changing the gamma valueAndrás Mohari
2013-10-21Fixed inconsistencies in navigation when removing invalid filesBert Münnich
2013-08-10Added file marks; fixes issue #94Bert Münnich
- Command it_toggle_image_mark (bound to 'm') toggles mark of current image - Command it_navigate_marked (bound to 'N'/'P') can be used to go to the next/previous marked image - When option -o is given, all marked files get printed
2013-04-02Fixed segfault caused by FD_ISSET() on negative fdBert Münnich
Reported by Kris Siwiec
2013-03-19New options: -[io], read/write files from/to stdin/outBert Münnich
Fixes issue #84
2013-03-19Made bar fields more distinguishableBert Münnich
2013-03-19Polished info script executionBert Münnich
2013-03-19Spawn info script & update bar contents only when neededBert Münnich
2013-03-19Spawn and read from info script without blockingBert Münnich
2013-02-09Merge remote-tracking branch '4z3/set-user-specified-sizehints' into sizehintsBert Münnich
Conflicts: window.c
2013-02-08Refactored function definitions to use dangling braceBert Münnich
2013-02-08Updated/corrected license headerBert Münnich
2013-01-30When using -g hint the WM that we've got user specified geometrytv
Without this some window managers (e.g. fvwm) will ignore the initial window position and place it according to it's own rules.
2013-01-12Simplified status bar, filled by user scriptmuennich
2012-12-27Fixed issue #73Bert Münnich
2012-12-20Fixed issue #72muennich
2012-12-01Merge branch 'newdraw'Bert Münnich
2012-10-31Next try to fix issue #71Bert Münnich
2012-10-29Overhauled window drawingBert Münnich
- Draw onto pixmap as before, but use the same size for the pixmap as for the window, allocate new pixmap after configure requests - Use XCopyArea() instead of XSetWindowBackgroundPixmap(), which now requires handling of Expose events
2012-08-17Disregard obsolete events, fixed issue #64Bert Münnich
2012-08-16New command: i_alternate, go to last image, issue #65Bert Münnich
2012-03-13Optimized redraw timeout after window resize for tiling window managers; ↵Bert Münnich
related to issue #44
2012-02-27Fixed issue #39: missing include of <sys/select.h>Bert Münnich
2012-02-21Display full name in info bar, if there is enough spaceBert Münnich