branch: externals/calibre
commit e283a2c928dfe3b6bebb09aec580e7c497b0e2c0
Author: Kjartan Óli Ágústsson <[email protected]>
Commit: Kjartan Óli Ágústsson <[email protected]>
Use correct separator when setting multiple authors
* calibre-edit.el (calibre-edit--command): Use " & " as a separator
between author names instead of ",", since the former is apparently
the correct syntax for calibredb.
* calibre.el: Bump package version.
---
calibre-edit.el | 2 +-
calibre.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/calibre-edit.el b/calibre-edit.el
index 7327a4a976..4c2664664d 100644
--- a/calibre-edit.el
+++ b/calibre-edit.el
@@ -76,7 +76,7 @@
,@(flatten-list (mapcar (lambda (field)
`("-f" ,(format "%s:%s"
(calibre-util-uglify-field-name field)
(cl-case field
- (authors (string-join
(calibre-book-authors book) ","))
+ (authors (string-join
(calibre-book-authors book) " & "))
(title (calibre-book-title
book))
(publisher
(calibre-book-publisher book))
(series (calibre-book-series
book))
diff --git a/calibre.el b/calibre.el
index 5970da52e7..ab15413a06 100644
--- a/calibre.el
+++ b/calibre.el
@@ -4,7 +4,7 @@
;; Author: Kjartan Oli Agustsson <[email protected]>
;; Maintainer: Kjartan Oli Agustsson <[email protected]>
-;; Version: 1.2.1
+;; Version: 1.2.2
;; Package-Requires: ((emacs "27.1") (compat "29.1.4.1"))
;; URL: https://git.disroot.org/kjartanoli/calibre.el