ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/Changes
(Generate patch)

Comparing CV/Changes (file contents):
Revision 1.165 by root, Sun Sep 12 09:17:04 2010 UTC vs.
Revision 1.212 by root, Wed Dec 27 17:48:16 2017 UTC

1TODO/FIXME: .ogm support is a must 1TODO: mkv
2TODO/FIXME: pixmap-bg-trick sometimes doesn't work (race?) 2TODO/FIXME: pixmap-bg-trick sometimes doesn't work (race?)
3TODO/FIXME: remove event does not recalculate schanuzer content size 3TODO/FIXME: remove event does not recalculate schanuzer content size
4TODO: with manual placement, initial contents aren't displayed 4TODO: with manual placement, initial contents aren't displayed
5TODO: update a file that has been removed etc. 5TODO: update a file that has been removed etc.
6TODO: cv file => rescan => 0 byte size if file no longer exists 6TODO: note to self, the reason mplayer hangs during long copies is that execve hangs, because it closes an fd to the target file.
7 7
8TODO: metacluster
9TODO: "mädhcne" utf-8 bug move to ERROR is a directory
10TODO: up == select dir
11TODO: turbojpeg
12TODO: CV_THUMBNAIL_SCALE
13TODO: Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text() at /opt/bin/cv line 224.
14TODO: dir_is_movie in load_image bluray: ffmpeg etc.
15
161.7 Wed Dec 27 18:47:50 CET 2017
17 - DEFAULT CHANGED: cv will now default to mpv instead of mplayer.
18 use CV_MPLAYER=mplayer to get the previous behaviour.
19 - new env variable, CV_MPLAYER, defaulting to mpv.
20 - make "mplayer" configurable via CV_MPLAYER, support mpv.
21 - support mpv ipc protocol for remote control.
22 - implement audio visualisation when playing audio streams,
23 remove support for CV_AUDIO_PLAYER.
24 - port to newer versions of gtk2, which require including gdkx.h.
25 - preliminary & optional webp load and thumbnail support.
26 - use mmap to "load" files and decode from memory buffers.
27 - use internal fileype function to detect filetype when generating
28 hthumbnails, instead of relaying on file extension (for speed).
29 - add internal magic_buffer/magic_buffer_mime functions.
30 - add more fallback extensions for audio when mimetype detection fails.
31
321.61 Sat Jun 24 01:55:48 CEST 2017
33 - work around parser bug in 5.18.1 (-a).
34 - very simple "better than nothing" jpeg cmyk/ycck format decoding.
35 - use ffprobe instead of mplayer to probe video size/type.
36 - switch to using AnyEvent::Fork as provider for the processpool, which ought
37 to save gobs of memory.
38 - much improved async communications with worker processes.
39 - batch expose events together, in an attempt to reduce the amount of
40 expose races in gtk+ (does not fix scrolling races).
41 - create #cpu + 1 worker jobs now, not 1.5 * #cpu + 1 as before.
42 - better shell-quoting: use ""-style for utf-8 filenames and paste as unicode,
43 use bash's $'' syntax for other filenames.
44 - no longer pass a-z from viewer to schnauzer.
45 - properly serialise jobs by priority, instead of executing
46 jobs in parallel on the same path *sometimes*.
47 - escape select-by-prefix menu item labels.
48 - work around more perl unicode bugs.
49 - slightly improved filetype detection.
50 - add "cp" job for external plugins.
51 - work around even more perl unicode bugs that the perl5-porters
52 don't want to fix because of backwards compatibility.
53 - do not stupidly load big video files into memory just
54 to make a thumbnail.
55 - don't modify global $_ in aio callbacks.
56 - make drag-rectangle more visible.
57 - do not enter the last directory on the commandline, if more
58 than one argument is specified.
59 - started using AnyEvent.
60 - space by default activates first file, or first directory, if no files
61 (as opposed to first file or last directory in previous versions).
62 - fix race condition where the schnauzer might stay non-sensitive
63 on fast directory changes.
64 - allow reversal of rotation via .cvrc $REVERSE_ROTATION = 1.
65 - delay initialisation of Gtk2::CV::Schnauzer until first use.
66 - fix a runtime error when starting namecluster with newer gtk's.
67 - do not rely on /dev/shm being world-writable, use
68 /run/shm, /dev/shm and /tmp, in this order.
69 - expect mplayer to sometimes generate more than 2 frames when 1 is
70 requested.
71 - tune video thumbnail generation a bit.
72 - more fixups for "file -i" failing.
73 - properly follows symlinks instead of bailing out.
74 - support perl multicore specification (http://perlmulticore.schmorp.de/)
75 for jpeg loading and image transformations, although nothing takes
76 advantage of this *yet*.
77 - ctrl-up/down in schnauzer tries to move name cluster cursor.
78 - ctrl-shift-T in image window now sets default rotation for
79 subsequent image loads.
80 - ctrl-shift-G in schnauzer now removes thumbnails.
81 - implement j (cycle subtitle) and # (cycle audio track)
82 in mplayer mode.
83 - respect load time (ctrl-shift-T) rotation setting for videos
84 (no clue how to do that at runtime).
85 - print jpeg error messages to stderr.
86
871.56 Thu Oct 28 14:13:36 CEST 2010
88 - try an ugly workaround against Gtk's CONTINUED brokenness
89 with regards to non-ascii filenames :(.
8 - REALLY hide paths that are in the process of being removed 90 - REALLY hide paths that are in the process of being removed
9 from the Schnauzer. 91 from the Schnauzer.
10 - when selecting entries, stat them all and fine their total 92 - when selecting entries, stat them all and fine their total
11 size(s) + filesystem overhead after a delay. 93 size(s) + filesystem overhead after a delay.
12 - take advantage of the Guard module. 94 - take advantage of the Guard module.
13 - work around mplayer grabbing the focus. 95 - work around mplayer grabbing the focus.
14 - improve mplayer window size bug workaround. *sigh*. 96 - improve mplayer window size bug workaround. *sigh*.
15 - try not to keep a handle to a guard file to avoid 97 - try not to keep a handle to a guard file to avoid
16 running into rename races with nfs. 98 running into rename races with nfs.
17 - work around perl bug #77798 in some parts. 99 - work around perl bug #77798 in some parts.
100 - slight namecluster speed improvement.
101 - work around newer libmagic versions adding mime attributes.
18 102
191.55 Tue Jan 26 03:18:45 CET 2010 1031.55 Tue Jan 26 03:18:45 CET 2010
20 - schnauzer did usually not give the correct number for 104 - schnauzer did usually not give the correct number for
21 "# entries selected". 105 "# entries selected".
22 - added new "renamer" plugin that is useful for mass renames 106 - added new "renamer" plugin that is useful for mass renames

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines