From 01f1748b1e0ac45912dd9ae413c88d9ba09c4fca Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Thu, 8 Feb 2024 10:19:27 +0200 Subject: [PATCH] Fix some package-version metadata --- adoc-mode.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/adoc-mode.el b/adoc-mode.el index d129d09..6a99020 100644 --- a/adoc-mode.el +++ b/adoc-mode.el @@ -312,7 +312,7 @@ When nil, use the actual size. Otherwise, use ImageMagick to resize larger images to be of the given maximum dimensions. This requires Emacs to be built with ImageMagick support." :group 'adoc - :package-version '(adoc-mode . "0.9.0") + :package-version '(adoc-mode . "0.8.0") :type '(choice (const :tag "Use actual image width" nil) (cons (choice (sexp :tag "Maximum width in pixels") @@ -323,7 +323,7 @@ requires Emacs to be built with ImageMagick support." (defcustom adoc-display-images t "Run `adoc-display-images' in function `adoc-mode'." :group 'adoc - :package-version '(adoc-mode . "0.9.0") + :package-version '(adoc-mode . "0.8.0") :type 'boolean) @@ -2920,13 +2920,15 @@ See also `adoc-image-overlays'. Only image URLs specified with a protocol listed in `adoc-remote-image-protocols' are displayed." :group 'adoc - :type 'boolean) + :type 'boolean + :package-version '(adoc-mode . "0.8.0")) (defcustom adoc-remote-image-protocols '("https") "List of protocols to use to download remote images. See also `adoc-display-remote-images'." :group 'adoc - :type '(repeat string)) + :type '(repeat string) + :package-version '(adoc-mode . "0.8.0")) (defvar adoc--remote-image-cache (make-hash-table :test 'equal)