diff --git a/ChangeLog b/ChangeLog index 379655e3..13df4b51 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +v0.0.19: + + Improved Greasemonkey compatibility + + Improve multiple window support + + Use WAF buildscripts, still keeping autotools + + Install and use Midori logo + + Support zooming and printing + + Enhance Gjs functionality + + Refactor in some places, particularly Web Search + + Implement favicons and source view with GIO + + Introduce new fancy location entry + + Detect and show news feeds on web sites + + Save the session as needed, not only on quit + + Reintroduce Download Manager preference + v0.0.18: + First attempt at userscripts and extensions. + Show hidden location/ web search temporarily when needed. diff --git a/configure.in b/configure.in index b4f78bab..ed99b8ad 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ # Register ourselves to autoconf -AC_INIT([midori], [0.0.18], [http://software.twotoasts.de/bugs]) +AC_INIT([midori], [0.0.19], [http://www.twotoasts.de/bugs]) AC_CONFIG_SRCDIR([midori/main.h]) AC_CONFIG_HEADER([config.h]) diff --git a/wscript b/wscript index cfef9ce5..9bd8d950 100644 --- a/wscript +++ b/wscript @@ -6,7 +6,7 @@ import pproc as subprocess import Common APPNAME = 'midori' -VERSION = '0.0.18' +VERSION = '0.0.19' try: git = subprocess.Popen (['git', 'rev-parse', '--short', 'HEAD'],