From 197540b69d8569f3cedbef9370e693699df5530d Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Sun, 19 Apr 2015 00:26:24 -0400 Subject: [PATCH] Add 0.102.x release note --- core/core-spacemacs-buffer.el | 6 +++--- core/release-notes/0.102.txt | 12 ++++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 core/release-notes/0.102.txt diff --git a/core/core-spacemacs-buffer.el b/core/core-spacemacs-buffer.el index 908d24b39..13c1c4869 100644 --- a/core/core-spacemacs-buffer.el +++ b/core/core-spacemacs-buffer.el @@ -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 "╭─" diff --git a/core/release-notes/0.102.txt b/core/release-notes/0.102.txt new file mode 100644 index 000000000..770ba5698 --- /dev/null +++ b/core/release-notes/0.102.txt @@ -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 -packages ...)`, +`(setq -pre-extensions ...)`, `(setq -post-extensions ...)` +and `(defvar -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.