aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Check if window manager supports fullscreen; related to issue #128Bert Münnich2014-02-022-0/+44
|
* Unified X atom initializationBert Münnich2014-02-024-15/+30
|
* Merged pull request #129Bert Münnich2014-01-318-16/+33
|\
| * Fix tabs and wordingAndrás Mohari2014-01-311-3/+3
| |
| * Use a prefix key to execute the key handlerAndrás Mohari2014-01-314-5/+25
|/ | | | | | 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.
* Use logo in READMEBert Münnich2014-01-151-2/+1
|
* Added window icons; fixes issue #125Bert Münnich2014-01-1510-0/+320
|
* Fixed -z option argument parsing; fixes issue #127Bert Münnich2014-01-152-2/+2
|
* Double click on thumbnail to open imageBert Münnich2014-01-112-7/+12
|
* Adhere to XDG Base Directory Specification; fixes issue #124Bert Münnich2014-01-117-41/+41
|
* Allow config.h to use multimedia keys (XF86_XK_*); fixes issue #123Bert Münnich2014-01-091-0/+1
|
* Second take at rotating & flipping multi-frame images; fixes issue #121Bert Münnich2014-01-093-17/+26
|
* Revert "Apply flip & rotation on all frames of a multi-frame image; fixes ↵Bert Münnich2014-01-093-30/+11
| | | | | | issue #121" This reverts commit f795273b650a4df39dca693f30c3650ec1d3393f.
* Apply flip & rotation on all frames of a multi-frame image; fixes issue #121Bert Münnich2014-01-093-11/+30
|
* Fixed handling of overloaded key mappingsBert Münnich2014-01-083-116/+134
| | | | | Issue described here: https://bbs.archlinux.org/viewtopic.php?pid=1117294#p1117294
* Fixup for 9574150Bert Münnich2014-01-081-4/+6
|
* Check file modification time after key handlerBert Münnich2014-01-081-0/+10
|
* Fixed slideshow delay corruption after GIF animationBert Münnich2014-01-082-2/+3
|
* Added doc header to exec/key-handlerBert Münnich2014-01-051-0/+11
|
* Show metadata of image on Ctrl-e in exec/key-handlerBert Münnich2014-01-051-0/+2
|
* Copy image path to primary on Ctrl-c in exec/key-handlerBert Münnich2014-01-051-0/+2
|
* Slideshow mode is back, in a simplified versionBert Münnich2014-01-0411-31/+111
|
* Simplified EXIF tag extraction in exec/image-infoBert Münnich2014-01-032-2/+2
|
* Moved external shell commands into exec/key-handler scriptBert Münnich2014-01-027-100/+98
| | | | | Gets called on all unset key mappings. Arguments are: key combo and current file. Thanks to Francesco Orsenigo (xarvh) for the idea.
* Proper support for Ctrl/Shift/Alt modifiers in key & mouse mappingsBert Münnich2014-01-024-112/+110
|
* Refactored remote changesBert Münnich2013-12-314-24/+14
|
* Read GIF's repeat information from file.Aleksander Nitecki2013-12-303-3/+26
|
* Fixed Imlib file handle type, issue #117Bert Münnich2013-12-135-8/+8
|
* Updated unstable version numberBert Münnich2013-11-171-1/+1
|
* Close info file descriptor after readingBastien Dejean2013-11-171-0/+1
|
* Fixed segfault when removing first image from file list, fixes issue #112Bert Münnich2013-11-162-3/+3
|
* Merge remote-tracking branch 'baskerville/reverse-marks'Bert Münnich2013-11-145-1/+19
|\
| * Add command to reverse marked imagesBastien Dejean2013-11-145-0/+18
| |
* | Correct out-of-range gamma values given on command lineBert Münnich2013-11-141-1/+1
| |
* | Refactored remote changesBert Münnich2013-11-147-46/+66
| |
* | Merge remote-tracking branch 'ariand/gamma'Bert Münnich2013-11-149-3/+91
|\ \
| * | Add support for changing the gamma valueAndrás Mohari2013-11-139-3/+91
| |/
* / Highlight edges of marked images in thumbnail modeBert Münnich2013-11-145-16/+50
|/
* Fixed inconsistencies in navigation when removing invalid filesBert Münnich2013-10-212-3/+8
|
* Seek over EXIF APP0 frame instead of reading and discarding itBert Münnich2013-10-052-3/+4
|
* Fixed image orientation if a JFIF APP0 segment is present in a JPEG header.Jacek Naglak2013-09-242-5/+12
|
* Updated unstable version numberBert Münnich2013-09-071-1/+1
|
* Warp pointer on first/last pixelPeter Hofmann2013-09-071-8/+8
| | | | | | | | | | | Previously, the pointer would get warped when it had left the window. This doesn't work when sxiv is run in fullscreen mode (or similar -- see dwm's monocle mode): The pointer can never leave the window in such situations. To fix this, warp the pointer when it's on the first/last pixel. To avoid an endless warping loop, the new position must be at least one pixel away from the next warp position.
* Added options for anti-alias & alpha layer coloring to config.def.hBert Münnich2013-08-228-15/+23
| | | | Also removed now obsolete -p command line option; fixes issue #98
* Only print marked files when -o is givenBert Münnich2013-08-224-8/+8
| | | | | Fallback to print all files, if no images are marked, was kind of irritating.
* Added file marks; fixes issue #94Bert Münnich2013-08-107-6/+77
| | | | | | | | - 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
* Updated unstable version numberBert Münnich2013-08-101-1/+1
|
* Changed key bindings for flipping to bar & underscoreBert Münnich2013-08-103-5/+5
|
* Refactored merged rotation codeBert Münnich2013-08-105-30/+20
|
* Handle 180 degrees image rotationBastien Dejean2013-08-107-26/+34
|