aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Use and depend on GNU make...Bert Münnich2014-11-022-23/+17
| | | | | | | - 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
* Updated unstable version numberBert Münnich2014-11-021-1/+1
|
* optimized iconsoctos2014-11-015-0/+0
|
* Do not cache thumbnails, which are smaller than the maximum sizeBert Münnich2014-10-311-12/+22
|
* Discard cached & EXIF thumbnails, which are smaller than the configured ↵Bert Münnich2014-10-311-12/+21
| | | | maximum size
* Fixed leakage of resources allocated by EXIF libraryBert Münnich2014-10-312-5/+5
|
* Fixed segfault when run with -cBert Münnich2014-10-292-2/+2
|
* Fix Makefile depend file usageTim Harder2014-10-251-3/+4
| | | | | | 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.
* Stable version 1.3Bert Münnich2014-10-242-1/+8
|
* Do not print could-not-open-warnings for files found by directory traversalBert Münnich2014-10-244-11/+14
|
* Use depend file for header build dependenciesBert Münnich2014-10-242-1/+10
|
* Corrected & refactored handling of window bar content...Bert Münnich2014-10-013-41/+67
| | | | Old snprintf calls could have overflowed the buffers.
* Fixed segfault on image removal with uninitialized thumbnails; fixes issue #177Bert Münnich2014-10-012-6/+7
|
* Unified file count variable for image & thumbnail modeBert Münnich2014-09-305-49/+42
|
* Set JPEG quality for thumbnail cache filesBert Münnich2014-09-291-0/+1
|
* Fixed thumbnail creation for files with big aspect ratio factor; fixes issue ↵Bert Münnich2014-09-291-1/+2
| | | | #175
* Scale thumbnail selection border width with thumbnail sizeBert Münnich2014-09-292-7/+11
|
* Moved thumbnail sizes array to config.def.hBert Münnich2014-09-292-7/+13
|
* Refactored thumbnail size dependent calculationsBert Münnich2014-09-293-12/+15
|
* Removed obsolete thumbnail dimension configuration settingBert Münnich2014-09-282-7/+1
|
* Added thumbnail zooming...Bert Münnich2014-09-287-63/+100
| | | | | | - Key mappings +/- are now general commands - Use JPG as thumbnail cache file format instead of PNG - Fixes issue #161
* Changed image mark in thumbnail view to small rectangleBert Münnich2014-09-273-6/+5
|
* Refactored main loop; properly fixes startup issueBert Münnich2014-09-261-32/+27
|
* Fixed startup in thumbnail mode with floating windowBert Münnich2014-09-261-3/+5
|
* Revised thumbnail loading...Bert Münnich2014-09-265-45/+71
| | | | | | | - 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
* Fixed segfault caused by image removal in thumbnail modeBert Münnich2014-09-112-2/+2
|
* Simplified img_frame_animateBert Münnich2014-09-014-13/+8
|
* Fixed segfault in ci_toggle_animation, fixes issue #173Bert Münnich2014-09-012-8/+9
|
* Corrected i_alternate, fixes issue #171Bert Münnich2014-08-292-4/+6
|
* Bug #165: Deletion of unnecessary null pointer checksMarkus Elfring2014-08-223-19/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* Refactored rotation in key-handlerBert Münnich2014-08-201-11/+12
|
* Added actions for tag addition & removal to key-handlerBert Münnich2014-08-202-1/+20
|
* Unified rotate actions in key-handler; use lossless operation based on file typeBert Münnich2014-08-181-18/+13
|
* Beautified thumbnail marks and selection borderBert Münnich2014-08-181-14/+12
|
* Further simplified thumbnail marksBert Münnich2014-08-183-7/+5
|
* Simplified thumbnail selection and marksBert Münnich2014-08-173-19/+15
|
* Increased contrast in default color setBert Münnich2014-08-171-2/+2
|
* Added command to remove all image marks, bound to Ctrl-m; fixes issue #163Bert Münnich2014-08-175-0/+18
|
* Full redraw when removing files during thumbnail reloading; fixes issue #164Bert Münnich2014-08-172-1/+3
|
* Fixed wrong thumbnail-to-file mappings caused by file deletionsBert Münnich2014-08-164-22/+24
|
* Pass marked files to external key handler in thumbnail mode; fixes issue #135Bert Münnich2014-08-166-56/+76
|
* Count number of marked filesBert Münnich2014-08-162-3/+11
|
* Unified file index variable for image & thumbnail modeBert Münnich2014-08-164-78/+65
|
* Generalized thumbnail loading, allows easier reloading of thumbnails later onBert Münnich2014-08-164-10/+16
|
* Made argument of s_strdup constlucas82014-08-013-3/+3
|
* Overhauled window drawing, yet again; fixes issue #155Bert Münnich2014-07-286-75/+54
| | | | | | | | - 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
* Revised handling of GIF animationsBert Münnich2014-07-259-49/+36
| | | | | | - New option `-a`: Play animations at startup - Ctrl-Space toggles animation for all GIF files - Infinite loop for all animations
* Added support for multiple commands per key/button mapping; elegant fix for ↵Bert Münnich2014-07-234-22/+22
| | | | issue #150
* Revised command structure and key and mouse button mappingsBert Münnich2014-07-238-380/+324
|
* Show key handler status in bar while it is runningBert Münnich2014-06-153-8/+20
|