47af0dd7b5
Cache out of view thumbnails in the background
2015-01-04 21:24:43 +01:00
9b9294bae6
Use bit-field for boolean flags in fileinfo struct
2015-01-04 21:24:43 +01:00
0cb1d11305
Removed obsolete ss_delays array, fixes issue #191
2014-12-22 09:00:36 +01:00
e228594391
Grouped optional dependencies in Makefile
2014-12-08 08:20:55 +01:00
6216bf6c2d
Ignore SIGPIPE, caused by key handler exiting before all files got printed, fixes issue #188
2014-12-01 14:03:49 +01:00
216ad81b59
Pass file paths to key handler via stdin; fixes issue #187
2014-11-27 22:37:20 +01:00
51854c6148
Fixed leakage of pipe descriptors in case of failing fork
2014-11-27 22:25:27 +01:00
ed030fe4d3
Enforced thumbnail reloading after key handler
2014-11-27 22:24:18 +01:00
728a2d931f
Limit thumbnail selection border width to 4px
2014-11-27 22:23:14 +01:00
1439b84544
Stable version 1.3.1
2014-11-16 21:38:30 +01:00
54af451b4a
Added -MP dependency generation option to compile flags
2014-11-14 18:12:18 +01:00
f55d9f4283
Use and depend on GNU make...
...
- 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-02 22:42:59 +01:00
6cee58117a
Updated unstable version number
2014-11-02 11:50:36 +01:00
2b580ec193
optimized icons
2014-11-01 20:12:27 +01:00
d154b9826f
Do not cache thumbnails, which are smaller than the maximum size
2014-10-31 10:41:33 +01:00
eb5feb4585
Discard cached & EXIF thumbnails, which are smaller than the configured maximum size
2014-10-31 10:41:30 +01:00
f5f49e7a9d
Fixed leakage of resources allocated by EXIF library
2014-10-31 10:37:35 +01:00
25077ac764
Fixed segfault when run with -c
2014-10-29 14:20:54 +01:00
33b8148614
Fix Makefile depend file usage
...
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-25 19:06:46 +02:00
c038283286
Stable version 1.3
2014-10-24 12:25:18 +02:00
93e2a757d4
Do not print could-not-open-warnings for files found by directory traversal
2014-10-24 11:14:01 +02:00
e15dabde74
Use depend file for header build dependencies
2014-10-24 10:50:14 +02:00
c33f2ad355
Corrected & refactored handling of window bar content...
...
Old snprintf calls could have overflowed the buffers.
2014-10-01 22:35:22 +02:00
8db3191f04
Fixed segfault on image removal with uninitialized thumbnails; fixes issue #177
2014-10-01 20:25:36 +02:00
ddd028eb3e
Unified file count variable for image & thumbnail mode
2014-09-30 21:54:17 +02:00
b4096c59e4
Set JPEG quality for thumbnail cache files
2014-09-29 14:06:24 +02:00
390d771e70
Fixed thumbnail creation for files with big aspect ratio factor; fixes issue #175
2014-09-29 14:05:04 +02:00
0e4db69ff5
Scale thumbnail selection border width with thumbnail size
2014-09-29 09:36:43 +02:00
39671a149c
Moved thumbnail sizes array to config.def.h
2014-09-29 09:02:29 +02:00
8fa7247f69
Refactored thumbnail size dependent calculations
2014-09-29 08:47:01 +02:00
c3c70a6c3e
Removed obsolete thumbnail dimension configuration setting
2014-09-28 09:55:44 +02:00
7b91e10f22
Added thumbnail zooming...
...
- Key mappings +/- are now general commands
- Use JPG as thumbnail cache file format instead of PNG
- Fixes issue #161
2014-09-28 00:28:50 +02:00
b2dbd2fed3
Changed image mark in thumbnail view to small rectangle
2014-09-27 22:05:21 +02:00
5fce009b73
Refactored main loop; properly fixes startup issue
2014-09-26 22:47:28 +02:00
c1e084357c
Fixed startup in thumbnail mode with floating window
2014-09-26 20:45:15 +02:00
eaa269b6cb
Revised thumbnail loading...
...
- 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-26 10:31:03 +02:00
52e56c8924
Fixed segfault caused by image removal in thumbnail mode
2014-09-11 22:22:51 +02:00
2fbc21a205
Simplified img_frame_animate
2014-09-01 20:41:33 +02:00
95a7496edc
Fixed segfault in ci_toggle_animation, fixes issue #173
2014-09-01 20:40:17 +02:00
f478385d59
Corrected i_alternate, fixes issue #171
2014-08-29 20:16:24 +02:00
0f6cb93a09
Bug #165 : Deletion of unnecessary null pointer checks
...
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-22 19:24:08 +02:00
75a665670a
Refactored rotation in key-handler
2014-08-20 11:39:56 +02:00
eaf55e9af9
Added actions for tag addition & removal to key-handler
2014-08-20 11:34:05 +02:00
3a680172c8
Unified rotate actions in key-handler; use lossless operation based on file type
2014-08-18 20:21:42 +02:00
056624548a
Beautified thumbnail marks and selection border
2014-08-18 15:42:10 +02:00
fe3a1e326f
Further simplified thumbnail marks
2014-08-18 12:45:32 +02:00
d0ba2c585d
Simplified thumbnail selection and marks
2014-08-17 23:01:39 +02:00
4310b846c1
Increased contrast in default color set
2014-08-17 22:57:09 +02:00
1094def183
Added command to remove all image marks, bound to Ctrl-m; fixes issue #163
2014-08-17 20:27:01 +02:00
50652f63d9
Full redraw when removing files during thumbnail reloading; fixes issue #164
2014-08-17 16:31:16 +02:00