summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2014-12-17 21:31:15 +0100
committermathieui <mathieui@mathieui.net>2014-12-17 21:31:15 +0100
commitea7d86ed51a4b107adaa7fe0529f693619fe0276 (patch)
tree762bab2daa8e39df1843652069d24e91dba1d034
parent596f269621f575d84ca95b6328159577dbb3f436 (diff)
downloadpoezio-ea7d86ed51a4b107adaa7fe0529f693619fe0276.tar.gz
poezio-ea7d86ed51a4b107adaa7fe0529f693619fe0276.tar.bz2
poezio-ea7d86ed51a4b107adaa7fe0529f693619fe0276.tar.xz
poezio-ea7d86ed51a4b107adaa7fe0529f693619fe0276.zip
Update CHANGELOG and versions
-rw-r--r--CHANGELOG4
-rwxr-xr-xlaunch.sh2
-rw-r--r--src/args.py4
3 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 26d39489..1d2ed539 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -8,7 +8,11 @@ http://dev.louiz.org/projects/poezio/roadmap
- Require python 3.4 for the input handling, event loop, xml parser, and ssl API
- Due to the slixmpp move, /reconnect now works (ecf22cb)
+- Add a /closeall command with a plugin, to cleanup the open tabs (ed7fe69)
+- Add a /set_default command which sets the value of an option back to its default (9caa992)
- The user’s JID is now shown in the roster (a0a00d5)
+- Improve the XML tab with coloration, better filters, and filter chaining (1cd0b4d)
+- Allow the use of client X.509 certificates for authentication (00396c1)
- Stream errors are now displayed, which is more helpful to the user than 'connection failed' (5cd854f)
- The (system-wide) launch script is now a setuptools entry point that checks dependencies (22f9b7a)
- XHTML-IM base64 embedded images are now extracted by default (a9f642f)
diff --git a/launch.sh b/launch.sh
index ab2829a1..fcbfa5d9 100755
--- a/launch.sh
+++ b/launch.sh
@@ -6,7 +6,7 @@ if [ -d "$poezio_dir/.git" ]
then
args=$(git --git-dir="$poezio_dir/.git" show --format='%h %ci' | head -n1)
else
- args="0.8.3-dev"
+ args="0.9-dev"
fi
if [ -e "$poezio_dir/$VENV" ]
diff --git a/src/args.py b/src/args.py
index 6b0108f0..030f7212 100644
--- a/src/args.py
+++ b/src/args.py
@@ -25,7 +25,7 @@ def parse_args(CONFIG_PATH=''):
metavar="DEBUG_FILE")
parser.add_option("-v", "--version", dest="version",
help=SUPPRESS, metavar="VERSION",
- default="0.8.3-dev")
+ default="0.9-dev")
(options, __) = parser.parse_args()
else:
parser = ArgumentParser()
@@ -38,6 +38,6 @@ def parse_args(CONFIG_PATH=''):
metavar="DEBUG_FILE")
parser.add_argument("-v", "--version", dest="version",
help=SUPPRESS, metavar="VERSION",
- default="0.8.3-dev")
+ default="0.9-dev")
options = parser.parse_args()
return options