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
|
### Release Notes
|
||||||
|
|
||||||
|
#### 3.27
|
||||||
|
|
||||||
|
* Add weather module
|
||||||
|
* Add text module
|
||||||
|
* PulseAudio module: Add muted/unmuted options
|
||||||
|
|
||||||
|
#### 3.26
|
||||||
|
|
||||||
|
* Add mem module
|
||||||
|
|
||||||
#### 3.24
|
#### 3.24
|
||||||
|
|
||||||
**This release introduced changes that may require manual changes to your
|
**This release introduced changes that may require manual changes to your
|
||||||
@ -503,7 +513,7 @@ __Settings:__
|
|||||||
* `host` — (default: `localhost`)
|
* `host` — (default: `localhost`)
|
||||||
* `port` — MPD port (default: `6600`)
|
* `port` — MPD port (default: `6600`)
|
||||||
* `format` — formatp string (default: `{title} {status}`)
|
* `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)
|
* `{volume}` — volume in percent (0...100)
|
||||||
* `{db}` — volume in decibels relative to 100 %, i.e. 100 % = 0 dB, 50 % = -18 dB, 0 % = -infinity dB
|
* `{db}` — volume in decibels relative to 100 %, i.e. 100 % = 0 dB, 50 % = -18 dB, 0 % = -infinity dB
|
||||||
(the literal value for -infinity is `-∞`)
|
(the literal value for -infinity is `-∞`)
|
||||||
|
* `{muted}` — the value of one of the `muted` or `unmuted` settings
|
||||||
|
|
||||||
|
|
||||||
__Settings:__
|
__Settings:__
|
||||||
|
|
||||||
* `format` — (default: `♪: {volume}`)
|
* `format` — (default: `♪: {volume}`)
|
||||||
|
* `muted` — (default: `M`)
|
||||||
|
* `unmuted` — (default: ``)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,6 +24,16 @@ Python 2.x.
|
|||||||
|
|
||||||
### Release Notes
|
### Release Notes
|
||||||
|
|
||||||
|
#### 3.27
|
||||||
|
|
||||||
|
* Add weather module
|
||||||
|
* Add text module
|
||||||
|
* PulseAudio module: Add muted/unmuted options
|
||||||
|
|
||||||
|
#### 3.26
|
||||||
|
|
||||||
|
* Add mem module
|
||||||
|
|
||||||
#### 3.24
|
#### 3.24
|
||||||
|
|
||||||
**This release introduced changes that may require manual changes to your
|
**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
|
This class uses the /sys/class/power_supply/…/uevent interface to check for the
|
||||||
battery status
|
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`
|
* `{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
|
* `{percentage}` — battery percentage relative to the last full value
|
||||||
|
2
setup.py
2
setup.py
@ -3,7 +3,7 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
setup(name="i3pystatus",
|
setup(name="i3pystatus",
|
||||||
version="3.26",
|
version="3.27",
|
||||||
description="Like i3status, this generates status line for i3bar / i3wm",
|
description="Like i3status, this generates status line for i3bar / i3wm",
|
||||||
url="http://github.com/enkore/i3pystatus",
|
url="http://github.com/enkore/i3pystatus",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
|
Loading…
Reference in New Issue
Block a user