summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-11-16Stable version 1.3.1v1.3.1Bert Münnich
2014-11-14Added -MP dependency generation option to compile flagsBert Münnich
2014-11-02Use and depend on GNU make...Bert Münnich
- 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
2014-11-02Updated unstable version numberBert Münnich
2014-11-01optimized iconsoctos
2014-10-31Do not cache thumbnails, which are smaller than the maximum sizeBert Münnich
2014-10-31Discard cached & EXIF thumbnails, which are smaller than the configured ↵Bert Münnich
maximum size
2014-10-31Fixed leakage of resources allocated by EXIF libraryBert Münnich
2014-10-29Fixed segfault when run with -cBert Münnich
2014-10-25Fix Makefile depend file usageTim Harder
Creating the .depend file requires the config.h file to exist and suppress make's complaints if the .depend file doesn't exist when initially parsing the makefile.
2014-10-24Stable version 1.3v1.3Bert Münnich
2014-10-24Do not print could-not-open-warnings for files found by directory traversalBert Münnich
2014-10-24Use depend file for header build dependenciesBert Münnich
2014-10-01Corrected & refactored handling of window bar content...Bert Münnich
Old snprintf calls could have overflowed the buffers.
2014-10-01Fixed segfault on image removal with uninitialized thumbnails; fixes issue #177Bert Münnich
2014-09-30Unified file count variable for image & thumbnail modeBert Münnich
2014-09-29Set JPEG quality for thumbnail cache filesBert Münnich
2014-09-29Fixed thumbnail creation for files with big aspect ratio factor; fixes issue ↵Bert Münnich
#175
2014-09-29Scale thumbnail selection border width with thumbnail sizeBert Münnich
2014-09-29Moved thumbnail sizes array to config.def.hBert Münnich
2014-09-29Refactored thumbnail size dependent calculationsBert Münnich
2014-09-28Removed obsolete thumbnail dimension configuration settingBert Münnich
2014-09-28Added thumbnail zooming...Bert Münnich
- Key mappings +/- are now general commands - Use JPG as thumbnail cache file format instead of PNG - Fixes issue #161
2014-09-27Changed image mark in thumbnail view to small rectangleBert Münnich
2014-09-26Refactored main loop; properly fixes startup issueBert Münnich
2014-09-26Fixed startup in thumbnail mode with floating windowBert Münnich
2014-09-26Revised thumbnail loading...Bert Münnich
- Only load the thumbnails that are currently visible in the window - Unload thumbnails that are leaving the visible area - Much less memory needed, but scrolling is now slower - This also unintentionally fixes issue #86
2014-09-11Fixed segfault caused by image removal in thumbnail modeBert Münnich
2014-09-01Simplified img_frame_animateBert Münnich
2014-09-01Fixed segfault in ci_toggle_animation, fixes issue #173Bert Münnich
2014-08-29Corrected i_alternate, fixes issue #171Bert Münnich
2014-08-22Bug #165: Deletion of unnecessary null pointer checksMarkus Elfring
The function "free" performs input parameter validation. http://pubs.opengroup.org/onlinepubs/9699919799/functions/free.html It is therefore not needed to check a passed pointer before this function call. A corresponding update suggestion was generated by the software "Coccinelle" from the following semantic patch approach. http://coccinelle.lip6.fr/ @Remove_unnecessary_pointer_checks1@ expression x; @@ -if (x != \(0 \| NULL\)) free(x); @Remove_unnecessary_pointer_checks2@ expression x; @@ -if (x != \(0 \| NULL\)) { free(x); x = \(0 \| NULL\); -} @Remove_unnecessary_pointer_checks3@ expression a, b; @@ -if (a != \(0 \| NULL\) && b != \(0 \| NULL\)) +if (a) free(b); @Remove_unnecessary_pointer_checks4@ expression a, b; @@ -if (a != \(0 \| NULL\) && b != \(0 \| NULL\)) { +if (a) { free(b); b = \(0 \| NULL\); } Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
2014-08-20Refactored rotation in key-handlerBert Münnich
2014-08-20Added actions for tag addition & removal to key-handlerBert Münnich
2014-08-18Unified rotate actions in key-handler; use lossless operation based on file typeBert Münnich
2014-08-18Beautified thumbnail marks and selection borderBert Münnich
2014-08-18Further simplified thumbnail marksBert Münnich
2014-08-17Simplified thumbnail selection and marksBert Münnich
2014-08-17Increased contrast in default color setBert Münnich
2014-08-17Added command to remove all image marks, bound to Ctrl-m; fixes issue #163Bert Münnich
2014-08-17Full redraw when removing files during thumbnail reloading; fixes issue #164Bert Münnich
2014-08-16Fixed wrong thumbnail-to-file mappings caused by file deletionsBert Münnich
2014-08-16Pass marked files to external key handler in thumbnail mode; fixes issue #135Bert Münnich
2014-08-16Count number of marked filesBert Münnich
2014-08-16Unified file index variable for image & thumbnail modeBert Münnich
2014-08-16Generalized thumbnail loading, allows easier reloading of thumbnails later onBert Münnich
2014-08-01Made argument of s_strdup constlucas8
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-25Revised handling of GIF animationsBert Münnich
- New option `-a`: Play animations at startup - Ctrl-Space toggles animation for all GIF files - Infinite loop for all animations
2014-07-23Added support for multiple commands per key/button mapping; elegant fix for ↵Bert Münnich
issue #150