diff --git a/ChangeLog b/ChangeLog index 13df4b51..73180647 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +v0.0.20: + + Single instance support using Unique + + Make it clear that WAF is preferred + + Provide an 'extension' icon + + Load user styles from ~/.local/share/midori/styles + + Use Ctrl+Shift+T for Undo Close Tab + + Add "open-tabs-next-to-current" preference + + Use rsvg-convert instead of imagemagick's convert + + @name in the meta data of userscripts is recognized + + Remove "small-toolbar" preference + v0.0.19: + Improved Greasemonkey compatibility + Improve multiple window support diff --git a/configure.in b/configure.in index d993d729..2dde9c20 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ # Register ourselves to autoconf -AC_INIT([midori], [0.0.19], [http://www.twotoasts.de/bugs]) +AC_INIT([midori], [0.0.20], [http://www.twotoasts.de/bugs]) AC_CONFIG_SRCDIR([midori/main.h]) AC_CONFIG_HEADER([config.h]) diff --git a/wscript b/wscript index 10964a59..1ad146d8 100644 --- a/wscript +++ b/wscript @@ -6,7 +6,7 @@ import pproc as subprocess import Common APPNAME = 'midori' -VERSION = '0.0.19' +VERSION = '0.0.20' try: git = subprocess.Popen (['git', 'rev-parse', '--short', 'HEAD'],