Kaynağa Gözat

Bump :version to "24.4" and add :package-version.

The options updated are those who won't be in Emacs 24.3.
Bastien Guerry 12 yıl önce
ebeveyn
işleme
295b0ba5d1
9 değiştirilmiş dosya ile 47 ekleme ve 26 silme
  1. 4 2
      lisp/ob-python.el
  2. 12 6
      lisp/org-agenda.el
  3. 4 2
      lisp/org-clock.el
  4. 2 2
      lisp/org-gnus.el
  5. 3 2
      lisp/org-mobile.el
  6. 4 2
      lisp/org-src.el
  7. 14 8
      lisp/org.el
  8. 2 1
      lisp/ox-html.el
  9. 2 1
      lisp/ox-latex.el

+ 4 - 2
lisp/ob-python.el

@@ -42,8 +42,9 @@
 
 (defcustom org-babel-python-command "python"
   "Name of the command for executing Python code."
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :group 'org-babel
-  :version "24.3"
   :type 'string)
 
 (defcustom org-babel-python-mode
@@ -51,7 +52,8 @@
   "Preferred python mode for use in running python interactively.
 This will typically be either 'python or 'python-mode."
   :group 'org-babel
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'function)
 
 (defvar org-src-preserve-indentation)

+ 12 - 6
lisp/org-agenda.el

@@ -851,7 +851,8 @@ scheduled date when the delay should expire.  The symbol `post-deadline'
 eliminates the schedule delay when the date is posterior to the deadline."
   :group 'org-agenda-skip
   :group 'org-agenda-daily/weekly
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type '(choice
 	  (const :tag "Always honor delay" nil)
 	  (const :tag "Ignore delay if posterior to the deadline" post-deadline)
@@ -1341,7 +1342,8 @@ When nil, they may also match part of a word."
 E.g. when this is set to 1, the search view will only
 show headlines of level 1."
   :group 'org-agenda-search-view
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'integer)
 
 (defgroup org-agenda-time-grid nil
@@ -2482,7 +2484,8 @@ duplicates.)"
 This can be nil (no limit) or an integer or an alist of agenda
 types with an associated number of entries to display in this
 type."
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :group 'org-agenda-custom-commands
   :type '(choice (symbol :tag "No limit" nil)
 		 (integer :tag "Max number of entries")
@@ -2500,7 +2503,8 @@ type."
 This can be nil (no limit) or an integer or an alist of agenda
 types with an associated number of entries to display in this
 type."
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :group 'org-agenda-custom-commands
   :type '(choice (symbol :tag "No limit" nil)
 		 (integer :tag "Max number of entries")
@@ -2518,7 +2522,8 @@ type."
 This can be nil (no limit) or an integer or an alist of agenda
 types with an associated number of entries to display in this
 type."
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :group 'org-agenda-custom-commands
   :type '(choice (symbol :tag "No limit" nil)
 		 (integer :tag "Max number of entries")
@@ -2536,7 +2541,8 @@ type."
 This can be nil (no limit) or a number of minutes (as an integer)
 or an alist of agenda types with an associated number of minutes
 to limit entries to in this type."
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :group 'org-agenda-custom-commands
   :type '(choice (symbol :tag "No limit" nil)
 		 (integer :tag "Max number of entries")

+ 4 - 2
lisp/org-clock.el

@@ -107,7 +107,8 @@ out within the next 5 minutes, the clock line will be removed;
 if you clock out 8 minutes after your clocked in, the clock
 out time will be 14:50."
   :group 'org-clock
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type '(choice
 	  (integer :tag "Minutes (0 for no rounding)")
 	  (symbol  :tag "Use `org-time-stamp-rounding-minutes'" 'same-as-time-stamp)))
@@ -406,7 +407,8 @@ Org git distribution. Or, you can do:
 
 if you are using Debian."
   :group 'org-clock
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'string)
 
 (defvar org-clock-in-prepare-hook nil

+ 2 - 2
lisp/org-gnus.el

@@ -69,10 +69,10 @@ this variable to `t'."
 (defcustom org-gnus-no-server nil
   "Should Gnus be started using `gnus-no-server'?"
   :group 'org-gnus
-  ;; :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'boolean)
 
-
 ;; Install the link type
 (org-add-link-type "gnus" 'org-gnus-open)
 (add-hook 'org-store-link-functions 'org-gnus-store-link)

+ 3 - 2
lisp/org-mobile.el

@@ -78,9 +78,10 @@ org-agenda-text-search-extra-files
 
 (defcustom org-mobile-allpriorities "A B C"
   "Default set of priority cookies for the index file."
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'string
-  :group 'org-mobile
-  :version "24.3")
+  :group 'org-mobile)
 
 (defcustom org-mobile-use-encryption nil
   "Non-nil means keep only encrypted files on the WebDAV server.

+ 4 - 2
lisp/org-src.el

@@ -69,7 +69,8 @@ there are kept outside the narrowed region."
 When a positive integer N, save after N seconds of idle time.
 When 0 (the default), don't auto-save."
   :group 'org-edit-structure
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'integer)
 
 (defcustom org-coderef-label-format "(ref:%s)"
@@ -201,7 +202,8 @@ has an active edit buffer, it will switch to that edit buffer
 immediately; otherwise it will ask whether you want to return to
 the existing edit buffer."
   :group 'org-edit-structure
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'boolean)
 
 (defvar org-src-babel-info nil)

+ 14 - 8
lisp/org.el

@@ -682,7 +682,8 @@ the followinglines anywhere in the buffer:
    #+STARTUP: latexpreview
    #+STARTUP: nolatexpreview"
   :group 'org-startup
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'boolean)
 
 (defcustom org-insert-mode-line-in-empty-file nil
@@ -2881,7 +2882,8 @@ minutes, and durations less than a day will be expressed entirely
 in minutes (even for durations longer than an hour)."
   :group 'org-time
   :group 'org-clock
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type '(choice (string :tag "Format string")
 		 (set :tag "Plist"
 		      (group :inline t (const :tag "Years" :years)
@@ -2933,7 +2935,8 @@ See `org-effort-durations' on how to set effort durations
 and `org-time-clocksum-format' for more on time clock formats."
   :group 'org-time
   :group 'org-clock
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'boolean)
 
 (defcustom org-time-clocksum-fractional-format "%.2f"
@@ -2988,7 +2991,8 @@ specified.
 Custom commands can set this variable in the options section."
   :group 'org-time
   :group 'org-agenda-daily/weekly
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'integer)
 
 (defcustom org-read-date-prefer-future t
@@ -3084,7 +3088,7 @@ When nil, only the minibuffer will be available."
 
 (make-obsolete-variable
  'org-read-date-minibuffer-setup-hook
- "Set `org-read-date-minibuffer-local-map' instead." "24.3")
+ "Set `org-read-date-minibuffer-local-map' instead." "24.4")
 (defcustom org-read-date-minibuffer-setup-hook nil
   "Hook to be used to set up keys for the date/time interface.
 Add key definitions to `minibuffer-local-map', which will be a
@@ -3124,7 +3128,8 @@ For example, if `org-extend-today-until' is 8, and it's 4am, then the
 Note that this option has precedence over the combined use of
 `org-use-effective-time' and `org-extend-today-until'."
   :group 'org-time
-  ;; :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'boolean)
 
 (defcustom org-edit-timestamp-down-means-later nil
@@ -16362,7 +16367,7 @@ Don't touch the rest."
   (let ((n 0))
     (mapcar (lambda (x) (if (< (setq n (1+ n)) 7) (or x 0) x)) time)))
 
-(define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.3")
+(define-obsolete-function-alias 'org-days-to-time 'org-time-stamp-to-now "24.4")
 
 (defun org-time-stamp-to-now (timestamp-string &optional seconds)
   "Difference between TIMESTAMP-STRING and now in days.
@@ -17250,7 +17255,8 @@ and fall back on the original width if none is found.
 
 This requires Emacs >= 24.1, build with imagemagick support."
   :group 'org-appearance
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type '(choice
 	  (const :tag "Use the image width" t)
 	  (integer :tag "Use a number of pixels")

+ 2 - 1
lisp/ox-html.el

@@ -963,7 +963,8 @@ CSS classes, then this prefix can be very useful."
 (defcustom org-html-display-buffer-mode 'html-mode
   "Default mode when visiting the HTML output."
   :group 'org-export-html
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type '(choice (function 'html-mode)
 		 (function 'nxml-mode)
 		 (function :tag "Other mode")))

+ 2 - 1
lisp/ox-latex.el

@@ -439,7 +439,8 @@ The function result will be used in the section format string.
 Use `org-latex-format-headline-default-function' by default,
 which format headlines like for Org version prior to 8.0."
   :group 'org-export-latex
-  :version "24.3"
+  :version "24.4"
+  :package-version '(Org . "8.0")
   :type 'function)