Bump revision version, fix newline display after memory

If memory usage is not displayed, a newline was still inserted. This
commit fixes this.
This commit is contained in:
Lucien Cartier-Tilet 2021-05-22 04:30:34 +02:00
parent 3934c4e472
commit 508c6883fe
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA

View File

@ -2,7 +2,7 @@
;; Author: Lucien Cartier-Tilet <lucien@phundrak.com> ;; Author: Lucien Cartier-Tilet <lucien@phundrak.com>
;; Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com> ;; Maintainer: Lucien Cartier-Tilet <lucien@phundrak.com>
;; Version: 0.4.1 ;; Version: 0.4.2
;; Package-Requires: ((emacs "24") (dash "2") (f "0.20") (s "1")) ;; Package-Requires: ((emacs "24") (dash "2") (f "0.20") (s "1"))
;; Homepage: https://labs.phundrak.com/phundrak/eshell-info-banner.el ;; Homepage: https://labs.phundrak.com/phundrak/eshell-info-banner.el
@ -429,12 +429,13 @@ TYPE......: [=========] XXG / XXG (XX%)
progress bar. progress bar.
`BAR-LENGTH': the length of the progress bar." `BAR-LENGTH': the length of the progress bar."
(mapconcat (lambda (mem) (concat (mapconcat (lambda (mem)
(eshell-info-banner--memory-to-string (nth 0 mem) (nth 1 mem) (eshell-info-banner--memory-to-string (nth 0 mem) (nth 1 mem)
(nth 2 mem) text-padding (nth 2 mem) text-padding
bar-length)) bar-length))
(eshell-info-banner--get-memory) (eshell-info-banner--get-memory)
"\n")) "\n")
"\n"))
; Display information ;;;;;;;;;;;;;;;;; ; Display information ;;;;;;;;;;;;;;;;;
@ -652,7 +653,6 @@ build number)."
uptime) uptime)
(eshell-info-banner--display-battery left-padding bar-length) (eshell-info-banner--display-battery left-padding bar-length)
(eshell-info-banner--display-memory left-padding bar-length) (eshell-info-banner--display-memory left-padding bar-length)
"\n"
(eshell-info-banner--display-partitions left-padding bar-length) (eshell-info-banner--display-partitions left-padding bar-length)
(format "\n%s\n" (s-repeat tot-width eshell-info-banner-progress-bar-char))))) (format "\n%s\n" (s-repeat tot-width eshell-info-banner-progress-bar-char)))))