Skip to content

Commit 99b096e

Browse files
committed
Change: Document MELPA registration
- Add license and MELPA badge to README - Forecast timestamp does not need to be bold - Add a ChangeLog file - Harmonise version numbers (oops) and bump
1 parent 80b9e65 commit 99b096e

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.elc

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
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+
35
Weather 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

screenshot.png

-2.7 KB
Loading

sparkweather.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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

sparkweather.org

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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

0 commit comments

Comments
 (0)