File tree Expand file tree Collapse file tree 6 files changed +16
-4
lines changed
Expand file tree Collapse file tree 6 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 1+ * .elc
Original file line number Diff line number Diff line change 1+ 2025-12-01 Robin Stephenson <robin.stephenson@ticketmaster.com>
2+
3+ * README.md: Add license and MELPA badges.
4+
5+ * sparkweather.el (sparkweather--display-day): Remove bold formatting for date.
6+
7+ * ChangeLog: Add change log.
Original file line number Diff line number Diff line change 11# ` sparkweather `
22
3+ ![ GitHub License] ( https://img.shields.io/github/license/aglet/sparkweather ) [ ![ MELPA] ( https://melpa.org/packages/sparkweather-badge.svg )] ( https://melpa.org/#/sparkweather )
4+
35Weather forecasts with sparklines for Emacs, using data from [ Open-Meteo] ( https://open-meteo.com ) .
46
57![ screenshot] ( screenshot.png )
68
79## Installation
810
11+ Sparkweather is available in [ MELPA] ( https://melpa.org/#/getting-started ) .
12+
913### [ Elpaca] ( https://github.com/progfolio/elpaca )
1014
1115``` elisp
Original file line number Diff line number Diff line change 44
55; ; Author: Robin Stephenson <robin@aglet.net>
66; ; Keywords: convenience, weather
7- ; ; Version: 0.1.0
7+ ; ; Version: 0.1.2
88; ; Package-Requires: ((emacs "29.1"))
99; ; URL: https://github.com/aglet/sparkweather
1010
@@ -323,7 +323,7 @@ Highlights lunch and commute hours."
323323 (tabulated-list-print t )
324324 (let ((inhibit-read-only t ))
325325 (goto-char (point-max ))
326- (insert " \n " (propertize ( format-time-string " %A %F %R" ) 'face 'bold )))
326+ (insert " \n " (format-time-string " %A %F %R" )))
327327 (goto-char (point-min ))
328328 (display-buffer (current-buffer )))))
329329
Original file line number Diff line number Diff line change 1212
1313;; Author: Robin Stephenson <robin@aglet.net>
1414;; Keywords: convenience, weather
15- ;; Version: 0.1.1
15+ ;; Version: 0.1.2
1616;; Package-Requires: ((emacs "29.1"))
1717;; URL: https://github.com/aglet/sparkweather
1818
@@ -375,7 +375,7 @@ Highlights lunch and commute hours."
375375 (tabulated-list-print t)
376376 (let ((inhibit-read-only t))
377377 (goto-char (point-max))
378- (insert "\n" (propertize ( format-time-string "%A %F %R") 'face 'bold )))
378+ (insert "\n" (format-time-string "%A %F %R")))
379379 (goto-char (point-min))
380380 (display-buffer (current-buffer)))))
381381#+end_src
You can’t perform that action at this time.
0 commit comments