Bump version to 0.1.1
This commit is contained in:
parent
5f149946d6
commit
c2c031e041
3 changed files with 15 additions and 2 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,5 +1,18 @@
|
|||
This file is licensed under the terms of the expat license, see the file EXPAT.
|
||||
|
||||
v0.1.1:
|
||||
+ Reimplement page holder as an extension
|
||||
+ Introduce a C extension interface
|
||||
+ Introduce unit tests for automated testing
|
||||
+ Implement history based location completion
|
||||
+ Support the Web Inspector in new WebKit versions
|
||||
+ Bookmarkbar properly reflects changes
|
||||
+ Improve overall OS X integration
|
||||
+ Add a Text Editor Preference
|
||||
+ Add a Compat sidebar Preference
|
||||
+ Add an Open external pages in Preference
|
||||
+ Implement source view and cached favicons with libsoup
|
||||
|
||||
v0.1.0:
|
||||
+ Allow for hiding the menubar
|
||||
+ Make the navigationbar customizable
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# This file is licensed under the terms of the expat license, see the file EXPAT.
|
||||
# Register ourselves to autoconf
|
||||
AC_INIT([midori], [0.1.0], [http://www.twotoasts.de/bugs])
|
||||
AC_INIT([midori], [0.1.1], [http://www.twotoasts.de/bugs])
|
||||
AC_CONFIG_SRCDIR([midori/midori-stock.h])
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
||||
|
|
2
wscript
2
wscript
|
@ -11,7 +11,7 @@ import UnitTest
|
|||
|
||||
major = 0
|
||||
minor = 1
|
||||
micro = 0
|
||||
micro = 1
|
||||
|
||||
APPNAME = 'midori'
|
||||
VERSION = str (major) + '.' + str (minor) + '.' + str (micro)
|
||||
|
|
Loading…
Reference in a new issue