diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin.el | 9 | ||||
| -rw-r--r-- | admin/make-tarball.txt | 16 |
2 files changed, 20 insertions, 5 deletions
diff --git a/admin/admin.el b/admin/admin.el index 542556a65e0..7e761c3f1f4 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -128,8 +128,13 @@ Root must be the root of an Emacs source tree." | |||
| 128 | (submatch (1+ (in "0-9.")))))) | 128 | (submatch (1+ (in "0-9.")))))) |
| 129 | (set-version-in-file root "java/AndroidManifest.xml.in" | 129 | (set-version-in-file root "java/AndroidManifest.xml.in" |
| 130 | (apply #'format "%02d%02d%02d000" | 130 | (apply #'format "%02d%02d%02d000" |
| 131 | (mapcar #'string-to-number | 131 | (let ((ver-list |
| 132 | (split-string version "\\."))) | 132 | (mapcar #'string-to-number |
| 133 | (split-string version "\\.")))) | ||
| 134 | ;; Official releases are XX.YY, not XX.YY.ZZ | ||
| 135 | (if (= 2 (length ver-list)) | ||
| 136 | (setq ver-list (append ver-list '(0)))) | ||
| 137 | ver-list)) | ||
| 133 | admin-android-version-code-regexp) | 138 | admin-android-version-code-regexp) |
| 134 | (set-version-in-file root "nt/README.W32" version | 139 | (set-version-in-file root "nt/README.W32" version |
| 135 | (rx (and "version" (1+ space) | 140 | (rx (and "version" (1+ space) |
diff --git a/admin/make-tarball.txt b/admin/make-tarball.txt index 22e76a0ac2e..61d19e54b8e 100644 --- a/admin/make-tarball.txt +++ b/admin/make-tarball.txt | |||
| @@ -388,9 +388,9 @@ add the new NEWS file as news/NEWS.xx.y | |||
| 388 | Copy new etc/MACHINES to MACHINES and CONTRIBUTE to CONTRIBUTE | 388 | Copy new etc/MACHINES to MACHINES and CONTRIBUTE to CONTRIBUTE |
| 389 | 389 | ||
| 390 | For every new release, a banner is displayed on top of the emacs.html | 390 | For every new release, a banner is displayed on top of the emacs.html |
| 391 | page. Uncomment and the release banner in emacs.html. Keep it on the | 391 | page. Uncomment the release banner in emacs.html. Keep it on the page |
| 392 | page for about a month, then comment it again. The new release banner | 392 | for about a month, then comment it again. The new release banner looks |
| 393 | looks like this: | 393 | like this: |
| 394 | 394 | ||
| 395 | <div class="release-banner"> | 395 | <div class="release-banner"> |
| 396 | <div class="container"> | 396 | <div class="container"> |
| @@ -398,6 +398,16 @@ looks like this: | |||
| 398 | </div> | 398 | </div> |
| 399 | </div> | 399 | </div> |
| 400 | 400 | ||
| 401 | Add the information about the new release in the "Releases" section of | ||
| 402 | emacs.html, which begins like this: | ||
| 403 | |||
| 404 | <div class="releases"> | ||
| 405 | <div class="container"> | ||
| 406 | <!-- NOTE: There is no need to keep more than the two most recent --> | ||
| 407 | <!-- major versions here. --> | ||
| 408 | |||
| 409 | <h2 id="Releases"> | ||
| 410 | |||
| 401 | Also, make sure the copyright years at the bottom of emacs.html are | 411 | Also, make sure the copyright years at the bottom of emacs.html are |
| 402 | up-to-date. | 412 | up-to-date. |
| 403 | 413 | ||