Bump version to 0.0.20
This commit is contained in:
parent
1dfebf6c7f
commit
45e4db6c86
3 changed files with 13 additions and 2 deletions
11
ChangeLog
11
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
|
||||
|
|
|
@ -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])
|
||||
|
||||
|
|
2
wscript
2
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'],
|
||||
|
|
Loading…
Reference in a new issue