Add 0.102.x release note

This commit is contained in:
syl20bnr 2015-04-19 00:26:24 -04:00
parent aabdc1882c
commit 197540b69d
2 changed files with 15 additions and 3 deletions

View File

@ -137,10 +137,10 @@ buffer, right justified."
(search-forward "Spacemacs\]")
(next-line)
;; for now the path to the release note if hardcoded
(let* ((file (concat spacemacs-release-notes-directory "0.101.txt"))
(let* ((file (concat spacemacs-release-notes-directory "0.102.txt"))
(note (concat "\n" (spacemacs//render-framed-text
file spacemacs-buffer--banner-length
" Important Notes (Release 0.101.x) "))))
" Important Notes (Release 0.102.x) "))))
(setq spacemacs-buffer--release-note-widgets
(list (widget-create 'text note)
(widget-create 'url-link
@ -258,7 +258,7 @@ The vertical spacing is always one line."
fill-column))
(sentence-end-double-space nil)
(caption-len (length caption)))
(fill-region (point-min) (point-max) 'justify)
(fill-region (point-min) (point-max) 'justify 'nosqueeze)
(concat
;; top
"╭─"

View File

@ -0,0 +1,12 @@
1. Private layers
It is now possible to reload the dotfile and layers anywhere with `SPC f e
R`. This key binding **replaces** the old `C-c C-c` and `SPC m c c` only
available in the dotfile.
**Important** You should replace your `(defvar <layer>-packages ...)`,
`(setq <layer>-pre-extensions ...)`, `(setq <layer>-post-extensions ...)`
and `(defvar <layer>-excluded-packages ...)` by `(setq ...)`. This will
allow to install newly added packages to a layer without restarting spacemacs
by pressing `SPC f e R`. Be sure to remove the docstring when replacing the
`defvar` since `setq` does not take a third argument.