Bump version to 0.1.0
This commit is contained in:
parent
567e402eaa
commit
c2cba4899a
4 changed files with 19 additions and 3 deletions
16
ChangeLog
16
ChangeLog
|
@ -1,5 +1,21 @@
|
|||
This file is licensed under the terms of the expat license, see the file EXPAT.
|
||||
|
||||
v0.1.0:
|
||||
+ Allow for hiding the menubar
|
||||
+ Make the navigationbar customizable
|
||||
+ Implement a History panel
|
||||
+ Remove the HTTP Proxy hack
|
||||
+ Add an Always Show Tabbar Preference
|
||||
+ Implement 404 error pages
|
||||
+ Remove the Primary Clipboard hack
|
||||
+ Provide user documentation
|
||||
+ Display Not found errors when possible
|
||||
+ Remove Stylesheet and Zoom Stepping preferences
|
||||
+ Make dialogs more compact
|
||||
+ Ellipsize extremely long menu items
|
||||
+ Save the trash again when quitting
|
||||
+ Implement enabling/ disabling addons
|
||||
|
||||
v0.0.21:
|
||||
+ Update some translations
|
||||
+ Show progress in location when statusbar is hidden
|
||||
|
|
2
README
2
README
|
@ -14,7 +14,7 @@ Midori is a lightweight web browser.
|
|||
|
||||
Requirements: GTK+ 2.6, WebkitGtk, libXML2
|
||||
|
||||
Optional: Glib 2.16, GtkSourceView 2.0, Unique 0.9, xdg-open
|
||||
Optional: Glib 2.16, GtkSourceView 2.0, Unique 0.9, sqlite 3.0, xdg-open
|
||||
|
||||
For installation instructions read INSTALL.
|
||||
|
||||
|
|
|
@ -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.0.21], [http://www.twotoasts.de/bugs])
|
||||
AC_INIT([midori], [0.1.0], [http://www.twotoasts.de/bugs])
|
||||
AC_CONFIG_SRCDIR([midori/midori-stock.h])
|
||||
AC_CONFIG_HEADER([config.h])
|
||||
|
||||
|
|
2
wscript
2
wscript
|
@ -9,7 +9,7 @@ import platform
|
|||
import os
|
||||
|
||||
APPNAME = 'midori'
|
||||
VERSION = '0.0.21'
|
||||
VERSION = '0.1.0'
|
||||
|
||||
try:
|
||||
git = subprocess.Popen (['git', 'rev-parse', '--short', 'HEAD'],
|
||||
|
|
Loading…
Reference in a new issue