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

Comparing CV/Changes (file contents):
Revision 1.158 by root, Mon Nov 30 20:13:49 2009 UTC vs.
Revision 1.224 by root, Mon Apr 29 13:11:27 2019 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: rename, mass-rename
6TODO: update a file that has been removed etc. 5TODO: update a file that has been removed etc.
7TODO: 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.
8 7
8TODO: "mädhcne" utf-8 bug move to ERROR is a directory
9TODO: up == select dir
10TODO: turbojpeg
11TODO: CV_THUMBNAIL_SCALE
12TODO: Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text() at /opt/bin/cv line 224.
13TODO: dir_is_movie in load_image bluray: ffmpeg etc.
14
151.8 Mon Apr 29 15:10:44 CEST 2019
16 - work around newer versions of mpv no longer having a pause command.
17 - always use mpv to display gif images, because it's hard to detect whether a gif
18 is animated or not.
19 - use a better(?), more "sharp" method to detect keyboard accelerators and to decide
20 which keys to pass to the schnauzer from the image window.
21 - new selection method. Alt-A / select files i same directory, can be repeated.
22 - rename select by prefix to select by adjacent name.
23 - increase search range for adjacent name to 10000.
24 - change meta-mask to mod1-mask, as gtk+ has silently changed the meaning of meta
25 over the years (so much for api stability...).
26 - newer perl versions somehow manage to leak the prefetch file handle somehow,
27 try tro work aorund.
28 - implement (undocumented) filename_display_name hook in Gt2k::CV::Schnauer.
29 - use symbolic names for entry indices in Schnauzer, for sanity, as the design
30 is now stable enough.
31 - use loop-file=inf for mpv instead of -loop 0, which only works for mplayer.
32 - add metadata clustering plugin.
33 - use ffprobe also if libmagic cannot detect anything, to decide whether the
34 file is (maybe) an image or (maybe) a video.
35 - namecluster now respects default modifier mask.
36
371.71 Tue Jul 31 00:57:03 CEST 2018
38 - fix 'o' key osd level switching in mpv (similar to old mplayer mode).
39 - do not error out on incomplete JPEG files, generate fake EOI marker instead
40 to enable the decoder to output a partial file.
41
421.7 Wed Dec 27 18:47:50 CET 2017
43 - DEFAULT CHANGED: cv will now default to mpv instead of mplayer.
44 use CV_MPLAYER=mplayer to get the previous behaviour.
45 - new env variable, CV_MPLAYER, defaulting to mpv.
46 - make "mplayer" configurable via CV_MPLAYER, support mpv.
47 - support mpv ipc protocol for remote control.
48 - implement audio visualisation when playing audio streams,
49 remove support for CV_AUDIO_PLAYER.
50 - port to newer versions of gtk2, which require including gdkx.h.
51 - preliminary & optional webp load and thumbnail support.
52 - use mmap to "load" files and decode from memory buffers.
53 - use internal fileype function to detect filetype when generating
54 hthumbnails, instead of relaying on file extension (for speed).
55 - add internal magic_buffer/magic_buffer_mime functions.
56 - add more fallback extensions for audio when mimetype detection fails.
57
581.61 Sat Jun 24 01:55:48 CEST 2017
59 - work around parser bug in 5.18.1 (-a).
60 - very simple "better than nothing" jpeg cmyk/ycck format decoding.
61 - use ffprobe instead of mplayer to probe video size/type.
62 - switch to using AnyEvent::Fork as provider for the processpool, which ought
63 to save gobs of memory.
64 - much improved async communications with worker processes.
65 - batch expose events together, in an attempt to reduce the amount of
66 expose races in gtk+ (does not fix scrolling races).
67 - create #cpu + 1 worker jobs now, not 1.5 * #cpu + 1 as before.
68 - better shell-quoting: use ""-style for utf-8 filenames and paste as unicode,
69 use bash's $'' syntax for other filenames.
70 - no longer pass a-z from viewer to schnauzer.
71 - properly serialise jobs by priority, instead of executing
72 jobs in parallel on the same path *sometimes*.
73 - escape select-by-prefix menu item labels.
74 - work around more perl unicode bugs.
75 - slightly improved filetype detection.
76 - add "cp" job for external plugins.
77 - work around even more perl unicode bugs that the perl5-porters
78 don't want to fix because of backwards compatibility.
79 - do not stupidly load big video files into memory just
80 to make a thumbnail.
81 - don't modify global $_ in aio callbacks.
82 - make drag-rectangle more visible.
83 - do not enter the last directory on the commandline, if more
84 than one argument is specified.
85 - started using AnyEvent.
86 - space by default activates first file, or first directory, if no files
87 (as opposed to first file or last directory in previous versions).
88 - fix race condition where the schnauzer might stay non-sensitive
89 on fast directory changes.
90 - allow reversal of rotation via .cvrc $REVERSE_ROTATION = 1.
91 - delay initialisation of Gtk2::CV::Schnauzer until first use.
92 - fix a runtime error when starting namecluster with newer gtk's.
93 - do not rely on /dev/shm being world-writable, use
94 /run/shm, /dev/shm and /tmp, in this order.
95 - expect mplayer to sometimes generate more than 2 frames when 1 is
96 requested.
97 - tune video thumbnail generation a bit.
98 - more fixups for "file -i" failing.
99 - properly follows symlinks instead of bailing out.
100 - support perl multicore specification (http://perlmulticore.schmorp.de/)
101 for jpeg loading and image transformations, although nothing takes
102 advantage of this *yet*.
103 - ctrl-up/down in schnauzer tries to move name cluster cursor.
104 - ctrl-shift-T in image window now sets default rotation for
105 subsequent image loads.
106 - ctrl-shift-G in schnauzer now removes thumbnails.
107 - implement j (cycle subtitle) and # (cycle audio track)
108 in mplayer mode.
109 - respect load time (ctrl-shift-T) rotation setting for videos
110 (no clue how to do that at runtime).
111 - print jpeg error messages to stderr.
112
1131.56 Thu Oct 28 14:13:36 CEST 2010
114 - try an ugly workaround against Gtk's CONTINUED brokenness
115 with regards to non-ascii filenames :(.
116 - REALLY hide paths that are in the process of being removed
117 from the Schnauzer.
118 - when selecting entries, stat them all and fine their total
119 size(s) + filesystem overhead after a delay.
120 - take advantage of the Guard module.
121 - work around mplayer grabbing the focus.
122 - improve mplayer window size bug workaround. *sigh*.
123 - try not to keep a handle to a guard file to avoid
124 running into rename races with nfs.
125 - work around perl bug #77798 in some parts.
126 - slight namecluster speed improvement.
127 - work around newer libmagic versions adding mime attributes.
128
1291.55 Tue Jan 26 03:18:45 CET 2010
130 - schnauzer did usually not give the correct number for
131 "# entries selected".
132 - added new "renamer" plugin that is useful for mass renames
133 of very similar filenames.
9 - apply a heavy dose of common::sense. 134 - apply a heavy dose of common::sense.
10 - enable assert's (which perl disables...). 135 - enable assert's (which perl disables...).
11 - take advantage of IO::AIO::aio_readdirx. 136 - take advantage of IO::AIO::aio_readdirx.
12 - speed up file move duplicate detection. 137 - speed up file move duplicate detection.
13 138

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines