diff options
| author | Juri Linkov | 2006-02-12 17:46:11 +0000 |
|---|---|---|
| committer | Juri Linkov | 2006-02-12 17:46:11 +0000 |
| commit | ea948bd6efab506a557588ed1292da27317c62d1 (patch) | |
| tree | 78de29b2200f74d5ef62b4d5666906ab777f12ba | |
| parent | 4736e9631e198195781a590753fcc77e2ed70e1e (diff) | |
| download | emacs-ea948bd6efab506a557588ed1292da27317c62d1.tar.gz emacs-ea948bd6efab506a557588ed1292da27317c62d1.zip | |
(dired-mode-map): Bind `\C-t\C-t' to `tumme-dired-insert-marked-thumbs'.
| -rw-r--r-- | lisp/ChangeLog | 36 | ||||
| -rw-r--r-- | lisp/dired.el | 1 |
2 files changed, 37 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 7be9ef7914d..4288df5e4a9 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,39 @@ | |||
| 1 | 2006-02-12 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * tumme.el: Remove todo item about Thumbnail Managing Standard. | ||
| 4 | (tumme) <defgroup>: Change :group to `multimedia'. | ||
| 5 | (tumme-thumbnail-storage): Add choice `standard' for Thumbnail | ||
| 6 | Managing Standard. | ||
| 7 | (tumme-cmd-create-thumbnail-options): Use %w and %h instead of %s. | ||
| 8 | Fix dostring. | ||
| 9 | (tumme-cmd-create-temp-image-options): Use %w and %h instead of %x | ||
| 10 | and %y. Fix docstring. | ||
| 11 | (tumme-cmd-pngnq-program, tumme-cmd-pngcrush-program) | ||
| 12 | (tumme-cmd-create-standard-thumbnail-command): New user options. | ||
| 13 | (tumme-thumb-size): Set default to 128 if tumme-thumbnail-storage | ||
| 14 | is `standard'. Fix docstring. | ||
| 15 | (tumme-thumb-width, tumme-thumb-height): New user options. | ||
| 16 | (tumme-external-viewer): Try to find various viewers. | ||
| 17 | (tumme-get-thumbnail-image): Use `create-image' instead of | ||
| 18 | constructing the `image' structure. | ||
| 19 | (tumme-insert-thumbnail): Use `png' if tumme-thumbnail-storage is | ||
| 20 | `standard'. | ||
| 21 | (tumme-thumb-name): Add file name generation for standard storage. | ||
| 22 | Simplify code for other storages. | ||
| 23 | (tumme-thumb-name): Use width %w and height %h instead of size %s. | ||
| 24 | Add modification time %m and thumbnail-nq8 %q. | ||
| 25 | Use `tumme-cmd-create-standard-thumbnail-command' if | ||
| 26 | tumme-thumbnail-storage is `standard'. | ||
| 27 | (tumme-dired-insert-marked-thumbs): New autoload command. | ||
| 28 | (tumme-dired-after-readin-hook): New function. | ||
| 29 | (tumme-line-up-dynamic): Use `tumme-thumb-width' instead of | ||
| 30 | `tumme-thumb-size'. | ||
| 31 | (tumme-display-image): Replace size-x %x and size-y %y with | ||
| 32 | width %w and height %h. | ||
| 33 | |||
| 34 | * dired.el (dired-mode-map): Bind `\C-t\C-t' to | ||
| 35 | `tumme-dired-insert-marked-thumbs'. | ||
| 36 | |||
| 1 | 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com> | 37 | 2006-02-12 Mathias Dahl <mathias.dahl@gmail.com> |
| 2 | 38 | ||
| 3 | * tumme.el (tumme-write-tag): Fix small bug (file name did not | 39 | * tumme.el (tumme-write-tag): Fix small bug (file name did not |
diff --git a/lisp/dired.el b/lisp/dired.el index 8433432ff09..3bcb45e06c0 100644 --- a/lisp/dired.el +++ b/lisp/dired.el | |||
| @@ -1258,6 +1258,7 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST." | |||
| 1258 | (define-key map "\C-t." 'tumme-display-thumb) | 1258 | (define-key map "\C-t." 'tumme-display-thumb) |
| 1259 | (define-key map "\C-tc" 'tumme-dired-comment-files) | 1259 | (define-key map "\C-tc" 'tumme-dired-comment-files) |
| 1260 | (define-key map "\C-tf" 'tumme-mark-tagged-files) | 1260 | (define-key map "\C-tf" 'tumme-mark-tagged-files) |
| 1261 | (define-key map "\C-t\C-t" 'tumme-dired-insert-marked-thumbs) | ||
| 1261 | 1262 | ||
| 1262 | ;; Make menu bar items. | 1263 | ;; Make menu bar items. |
| 1263 | 1264 | ||