Releasing 3.27
* Add weather module (with most bugs fixed I hope) * Add text module (in preparation for #22) * PulseAudio module: Add muted/unmuted options
This commit is contained in:
parent
751f0bbb14
commit
6a3090ba8a
15
README.md
15
README.md
@ -24,6 +24,16 @@ Python 2.x.
|
||||
|
||||
### Release Notes
|
||||
|
||||
#### 3.27
|
||||
|
||||
* Add weather module
|
||||
* Add text module
|
||||
* PulseAudio module: Add muted/unmuted options
|
||||
|
||||
#### 3.26
|
||||
|
||||
* Add mem module
|
||||
|
||||
#### 3.24
|
||||
|
||||
**This release introduced changes that may require manual changes to your
|
||||
@ -503,7 +513,7 @@ __Settings:__
|
||||
* `host` — (default: `localhost`)
|
||||
* `port` — MPD port (default: `6600`)
|
||||
* `format` — formatp string (default: `{title} {status}`)
|
||||
* `status` — Dictionary mapping pause, play and stop to output (default: `{'stop': '◾', 'play': '▶', 'pause': '▷'}`)
|
||||
* `status` — Dictionary mapping pause, play and stop to output (default: `{'play': '▶', 'pause': '▷', 'stop': '◾'}`)
|
||||
|
||||
|
||||
|
||||
@ -560,11 +570,14 @@ Available formatters:
|
||||
* `{volume}` — volume in percent (0...100)
|
||||
* `{db}` — volume in decibels relative to 100 %, i.e. 100 % = 0 dB, 50 % = -18 dB, 0 % = -infinity dB
|
||||
(the literal value for -infinity is `-∞`)
|
||||
* `{muted}` — the value of one of the `muted` or `unmuted` settings
|
||||
|
||||
|
||||
__Settings:__
|
||||
|
||||
* `format` — (default: `♪: {volume}`)
|
||||
* `muted` — (default: `M`)
|
||||
* `unmuted` — (default: ``)
|
||||
|
||||
|
||||
|
||||
|
@ -24,6 +24,16 @@ Python 2.x.
|
||||
|
||||
### Release Notes
|
||||
|
||||
#### 3.27
|
||||
|
||||
* Add weather module
|
||||
* Add text module
|
||||
* PulseAudio module: Add muted/unmuted options
|
||||
|
||||
#### 3.26
|
||||
|
||||
* Add mem module
|
||||
|
||||
#### 3.24
|
||||
|
||||
**This release introduced changes that may require manual changes to your
|
||||
|
@ -95,7 +95,7 @@ class BatteryChecker(IntervalModule):
|
||||
This class uses the /sys/class/power_supply/…/uevent interface to check for the
|
||||
battery status
|
||||
|
||||
Available formatters for format and alert_format_\*:
|
||||
Available formatters:
|
||||
|
||||
* `{remaining}` — remaining time for charging or discharging, uses TimeWrapper formatting, default format is `%E%h:%M`
|
||||
* `{percentage}` — battery percentage relative to the last full value
|
||||
|
Loading…
Reference in New Issue
Block a user