Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-20 | Only open regular files; fixes issue #252 | Bert Münnich | |
2016-09-28 | Allow opening directories non-recursively | Paride Legovini | |
2016-08-06 | Use Xft for font loading and text drawing | 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) | |||
2015-10-28 | Prefix safe allocation functions with 'e' instead of 's_' | Bert Münnich | |
2015-10-28 | Removed feature test macro definitions from source files | Bert Münnich | |
2015-10-28 | Removed overcautious parameter checks | Bert Münnich | |
2015-07-22 | Thumbnail cache file format depending on existance of alpha layer | Bert Münnich | |
Use PNG if image has alpha layer, JPG if not. Fixes issue #209 | |||
2015-01-04 | Cache out of view thumbnails in the background | Bert Münnich | |
2015-01-04 | Use bit-field for boolean flags in fileinfo struct | Bert Münnich | |
2014-11-27 | Enforced thumbnail reloading after key handler | Bert Münnich | |
2014-11-27 | Limit thumbnail selection border width to 4px | Bert Münnich | |
2014-10-31 | Do not cache thumbnails, which are smaller than the maximum size | Bert Münnich | |
2014-10-31 | Discard cached & EXIF thumbnails, which are smaller than the configured ↵ | Bert Münnich | |
maximum size | |||
2014-10-31 | Fixed leakage of resources allocated by EXIF library | Bert Münnich | |
2014-10-29 | Fixed segfault when run with -c | Bert Münnich | |
2014-10-24 | Do not print could-not-open-warnings for files found by directory traversal | Bert Münnich | |
2014-09-30 | Unified file count variable for image & thumbnail mode | Bert Münnich | |
2014-09-29 | Set JPEG quality for thumbnail cache files | Bert Münnich | |
2014-09-29 | Fixed thumbnail creation for files with big aspect ratio factor; fixes issue ↵ | Bert Münnich | |
#175 | |||
2014-09-29 | Scale thumbnail selection border width with thumbnail size | Bert Münnich | |
2014-09-29 | Moved thumbnail sizes array to config.def.h | Bert Münnich | |
2014-09-29 | Refactored thumbnail size dependent calculations | Bert Münnich | |
2014-09-28 | Added 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-27 | Changed image mark in thumbnail view to small rectangle | Bert Münnich | |
2014-09-26 | Revised 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-08-22 | Bug #165: Deletion of unnecessary null pointer checks | Markus 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-18 | Beautified thumbnail marks and selection border | Bert Münnich | |
2014-08-18 | Further simplified thumbnail marks | Bert Münnich | |
2014-08-17 | Simplified thumbnail selection and marks | Bert Münnich | |
2014-08-16 | Fixed wrong thumbnail-to-file mappings caused by file deletions | Bert Münnich | |
2014-08-16 | Pass marked files to external key handler in thumbnail mode; fixes issue #135 | Bert Münnich | |
2014-08-16 | Unified file index variable for image & thumbnail mode | Bert Münnich | |
2014-08-16 | Generalized thumbnail loading, allows easier reloading of thumbnails later on | Bert Münnich | |
2014-07-28 | Overhauled window drawing, yet again; fixes issue #155 | Bert 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-06-10 | Create thumbnail cache dir automatically | Bert Münnich | |
2014-06-10 | Small fix for thumbnail cropping | Bert Münnich | |
2014-06-09 | Use thumbnails in EXIF tags; requirement for libexif is back | Bert Münnich | |
2014-04-06 | Use a checkerboard background for alpha layer; fixes issue #138 | Bert Münnich | |
2014-01-11 | Adhere to XDG Base Directory Specification; fixes issue #124 | Bert Münnich | |
2013-12-13 | Fixed Imlib file handle type, issue #117 | Bert Münnich | |
2013-11-14 | Highlight edges of marked images in thumbnail mode | Bert Münnich | |
2013-08-22 | Added options for anti-alias & alpha layer coloring to config.def.h | Bert Münnich | |
Also removed now obsolete -p command line option; fixes issue #98 | |||
2013-02-08 | Refactored function definitions to use dangling brace | Bert Münnich | |
2013-02-08 | Updated/corrected license header | Bert Münnich | |
2013-01-12 | Moved thumbnail cache to ~/.sxiv/cache/ | Bert Münnich | |
2012-07-15 | Made remote changes adhere to code style | Bert Münnich | |
2012-07-15 | handle count prefix in thumbnail movements | baskerville | |