Revert thumbnail naming for 'per-directory' storage method
* lisp/image/image-dired-util.el (image-dired-thumb-name): Revert to "filename.thumb.jpg" for 'per-directory' storage. (Bug#61394) * lisp/image/image-dired.el (image-dired-thumbnail-storage): Fix documentation.
This commit is contained in:
parent
9cd0238033
commit
7b30e11b2a
2 changed files with 10 additions and 10 deletions
|
@ -77,8 +77,9 @@ vary:
|
|||
added to the file name.
|
||||
|
||||
- Otherwise `image-dired-thumbnail-storage' is used to set the
|
||||
directory where to store the thumbnail. In this latter case
|
||||
the name given to the thumbnail depends on the value of
|
||||
directory where to store the thumbnail. In this latter case,
|
||||
if `image-dired-thumbnail-storage' is set to `image-dired' the
|
||||
file name given to the thumbnail depends on the value of
|
||||
`image-dired-thumb-naming'.
|
||||
|
||||
See also `image-dired-thumbnail-storage' and
|
||||
|
@ -99,15 +100,14 @@ See also `image-dired-thumbnail-storage' and
|
|||
(let ((name (if (eq 'sha1-contents image-dired-thumb-naming)
|
||||
(image-dired-contents-sha1 file)
|
||||
;; Defaults to SHA-1 of file name
|
||||
(if (eq 'per-directory image-dired-thumbnail-storage)
|
||||
(sha1 (file-name-nondirectory file))
|
||||
(sha1 file)))))
|
||||
(sha1 file))))
|
||||
(cond ((or (eq 'image-dired image-dired-thumbnail-storage)
|
||||
;; Maintained for backwards compatibility:
|
||||
(eq 'use-image-dired-dir image-dired-thumbnail-storage))
|
||||
(expand-file-name (format "%s.jpg" name) (image-dired-dir)))
|
||||
((eq 'per-directory image-dired-thumbnail-storage)
|
||||
(expand-file-name (format "%s.jpg" name)
|
||||
(expand-file-name (format "%s.thumb.jpg"
|
||||
(file-name-nondirectory file))
|
||||
(expand-file-name
|
||||
".image-dired"
|
||||
(file-name-directory file)))))))))
|
||||
|
|
|
@ -174,8 +174,8 @@ computing the SHA-1 of first 4KiB of the image contents (See
|
|||
In both case, a \"jpg\" extension is appended to save as JPEG.
|
||||
|
||||
The value of this option is ignored if Image-Dired is customized
|
||||
to use the Thumbnail Managing Standard. See
|
||||
`image-dired-thumbnail-storage'."
|
||||
to use the Thumbnail Managing Standard or the per-directory
|
||||
thumbnails setting. See `image-dired-thumbnail-storage'."
|
||||
:type '(choice :tag "How to name thumbnail files"
|
||||
(const :tag "SHA-1 of the image file name" sha1-filename)
|
||||
(const :tag "SHA-1 of the image contents" sha1-contents))
|
||||
|
@ -208,8 +208,8 @@ thumbnails:
|
|||
|
||||
Set this user option to `per-directory'.
|
||||
|
||||
To control the naming of thumbnails for alternatives (2) and (3)
|
||||
above, customize the value of `image-dired-thumb-naming'.
|
||||
To control the naming of thumbnails for alternative (2) above,
|
||||
customize the value of `image-dired-thumb-naming'.
|
||||
|
||||
To control the default size of thumbnails for alternatives (2)
|
||||
and (3) above, customize the value of `image-dired-thumb-size'.
|
||||
|
|
Loading…
Add table
Reference in a new issue