Bump version to 0.1.3
This commit is contained in:
parent
40a3eeb94d
commit
e3485dfbfb
4 changed files with 15 additions and 8 deletions
14
ChangeLog
14
ChangeLog
|
@ -1,5 +1,18 @@
|
|||
This file is licensed under the terms of the expat license, see the file EXPAT.
|
||||
|
||||
v0.1.3:
|
||||
+ Sidepanel can be aligned on the right
|
||||
+ Bookmarks can be organized in folders
|
||||
+ Support find as you type
|
||||
+ Support international domain names
|
||||
+ Tweak location completion
|
||||
+ Provide default search engines
|
||||
+ Integrate with Maemo if available
|
||||
+ Implement Mouse Gestures extension
|
||||
+ Implement a Plugins panel
|
||||
+ Editing the toolbar via a context menu
|
||||
+ Introduce Zoom Text and Images preference
|
||||
|
||||
v0.1.2:
|
||||
+ Open new tabs by clicking on the tabbar
|
||||
+ Refactor and speed up location completion
|
||||
|
@ -11,7 +24,6 @@ v0.1.2:
|
|||
+ Implement cookie storage on disk
|
||||
+ Remove autotooled build system
|
||||
+ Add a new Extensions panel
|
||||
+ Support javascript bookmarklets
|
||||
+ Implement opening of new windows
|
||||
+ Display tooltips in Preferences
|
||||
|
||||
|
|
3
README
3
README
|
@ -10,11 +10,10 @@ Midori is a lightweight web browser.
|
|||
* Straightforward bookmark management.
|
||||
* Customizable and extensible interface.
|
||||
* Extensions written in C.
|
||||
* Custom context menu actions.
|
||||
|
||||
Requirements: GTK+ 2.10, WebkitGtk, libXML2
|
||||
|
||||
Optional: Unique 0.9, libsoup 2.4, sqlite 3.0, docutils, xdg-open
|
||||
Optional: Unique 0.9, libsoup 2.23.1, libidn, sqlite 3.0, docutils, xdg-open
|
||||
|
||||
For installation instructions read INSTALL.
|
||||
|
||||
|
|
4
TODO
4
TODO
|
@ -1,20 +1,17 @@
|
|||
This file is licensed under the terms of the expat license, see the file EXPAT.
|
||||
|
||||
TODO:
|
||||
. Revamp bookmarks UI, including creating of bookmark folders
|
||||
. Use an update timeout in KatzePropertyProxy instead of only focus-out
|
||||
. Show a loading mouse pointer
|
||||
. Scroll tabs w/o switching tabs
|
||||
. Import and export of the bookmarks file, or using one from a specific path
|
||||
. Custom context menu actions, like in Thunar or Epiphany
|
||||
. Custom tab names
|
||||
. Open an auto-vanishing findbox with '.'
|
||||
. Analogus to blocked popups, blocked scripts moving layers on load (extension)
|
||||
. Per-site blocking of individual elements on a page
|
||||
. Statusbar icon 'cookies blocked', icon 'popups blocked'
|
||||
. Per-site settings accessible via statusbar icons, ie. cookies, popups, plugins
|
||||
. CookieSafe like, a list of cookies, with type, block, allow
|
||||
. Support mouse gestures (extension)
|
||||
. Automatic update checks (browser, extensions)?
|
||||
. Auto-group tabs by opener, with colors?
|
||||
. Mark (dogear) a selection so that it isn't cleared implicitly, multiply on one page
|
||||
|
@ -44,4 +41,3 @@ TODO:
|
|||
. Shared bookmarks and config
|
||||
. Custom-mode, e.g. hide menubar and use help icon to have a help viewer
|
||||
. Prevent dead tabs: download, aborted page
|
||||
. On url load, for big files, ask "Open or save?"
|
||||
|
|
2
wscript
2
wscript
|
@ -22,7 +22,7 @@ import UnitTest
|
|||
|
||||
major = 0
|
||||
minor = 1
|
||||
micro = 2
|
||||
micro = 3
|
||||
|
||||
APPNAME = 'midori'
|
||||
VERSION = str (major) + '.' + str (minor) + '.' + str (micro)
|
||||
|
|
Loading…
Reference in a new issue