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:
enkore 2013-10-20 18:42:54 +02:00
parent 751f0bbb14
commit 6a3090ba8a
4 changed files with 26 additions and 3 deletions

View File

@ -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: ``)

View File

@ -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

View File

@ -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

View File

@ -3,7 +3,7 @@
from setuptools import setup
setup(name="i3pystatus",
version="3.26",
version="3.27",
description="Like i3status, this generates status line for i3bar / i3wm",
url="http://github.com/enkore/i3pystatus",
license="MIT",