Bump version to 2.1.0.

This commit is contained in:
Vincent Zhang 2019-05-06 06:55:48 +08:00
parent 8d8225be5c
commit 0dfbb0c108
2 changed files with 4 additions and 4 deletions

View file

@ -378,10 +378,10 @@ directory, the file name, and its state (modified, read-only or non-existent)."
(unless (string-empty-p icon) (unless (string-empty-p icon)
(concat (concat
(propertize icon 'face `(:inherit (propertize icon 'face `(:inherit
,(let ((plist (get-text-property 0 'face icon))) ,(let ((props (get-text-property 0 'face icon)))
(if doom-modeline-major-mode-color-icon (if doom-modeline-major-mode-color-icon
plist props
(remove :inherit plist))) (remove :inherit props)))
:inherit :inherit
,(if active 'mode-line 'mode-line-inactive))) ,(if active 'mode-line 'mode-line-inactive)))
(if active doom-modeline-vspc doom-modeline-inactive-vspc))))) (if active doom-modeline-vspc doom-modeline-inactive-vspc)))))

View file

@ -4,7 +4,7 @@
;; Author: Vincent Zhang <seagle0128@gmail.com> ;; Author: Vincent Zhang <seagle0128@gmail.com>
;; Homepage: https://github.com/seagle0128/doom-modeline ;; Homepage: https://github.com/seagle0128/doom-modeline
;; Version: 2.0.0 ;; Version: 2.1.0
;; Package-Requires: ((emacs "25.1") (all-the-icons "1.0.0") (shrink-path "0.2.0") (dash "2.11.0")) ;; Package-Requires: ((emacs "25.1") (all-the-icons "1.0.0") (shrink-path "0.2.0") (dash "2.11.0"))
;; Keywords: faces mode-line ;; Keywords: faces mode-line