Merge lp:~midori/midori/release0.5.10 into lp:midori

Proposed by Cris Dywan
Status: Merged
Approved by: Paweł Forysiuk
Approved revision: 6940
Merged at revision: 6940
Proposed branch: lp:~midori/midori/release0.5.10
Merge into: lp:midori
Diff against target: 147 lines (+60/-8)
6 files modified
CMakeLists.txt (+1/-1)
ChangeLog (+49/-0)
katze/katze-arrayaction.c (+1/-1)
midori/midori-view.c (+1/-1)
tools/release (+7/-4)
win32/makedist/midori.nsi (+1/-1)
To merge this branch: bzr merge lp:~midori/midori/release0.5.10
Reviewer Review Type Date Requested Status
gue5t gue5t Approve
Review via email: mp+256763@code.launchpad.net

Commit message

Bump version to 0.5.10

To post a comment you must log in.
lp:~midori/midori/release0.5.10 updated
6940. By Cris Dywan

Bump version to 0.5.10

Revision history for this message
gue5t gue5t (gue5t) wrote :

Looks good!

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2015-04-09 20:50:32 +0000
+++ CMakeLists.txt 2015-04-19 23:03:51 +0000
@@ -11,7 +11,7 @@
11add_definitions("-DPACKAGE_NAME=\"${CMAKE_PROJECT_NAME}\"")11add_definitions("-DPACKAGE_NAME=\"${CMAKE_PROJECT_NAME}\"")
12add_definitions("-DPACKAGE_BUGREPORT=\"https://bugs.launchpad.net/midori\"")12add_definitions("-DPACKAGE_BUGREPORT=\"https://bugs.launchpad.net/midori\"")
1313
14set(VERSION 0.5.9)14set(VERSION 0.5.10)
15add_definitions("-DMIDORI_VERSION_SUFFIX=\"${VERSION}\"")15add_definitions("-DMIDORI_VERSION_SUFFIX=\"${VERSION}\"")
16 16
17string(REPLACE "." ";" VERSION_LIST ${VERSION})17string(REPLACE "." ";" VERSION_LIST ${VERSION})
1818
=== modified file 'ChangeLog'
--- ChangeLog 2014-11-10 22:59:26 +0000
+++ ChangeLog 2015-04-19 23:03:51 +0000
@@ -1,5 +1,54 @@
1This file is licensed under the terms of the expat license, see the file EXPAT.1This file is licensed under the terms of the expat license, see the file EXPAT.
22
3v0.5.10
4 use exit instead of return in license script
5 Fix HAVE_GCR guards after GtkPopover port
6 Remove example app and .desktop before creating it in the unit test
7 Fix cache dir path in Adblock and always mkdir tmp
8 Port location action from Granite.PopOver to Gtk.Popover
9 Match https site when user-style is using domain syntax
10 Always disable developer tools on Win32
11 Reimplement Midori.URI.unescape and add various tests
12 Make the inspector resizable with GTK3 by packing into a GtkScrolledWindow
13 Don't build tabs2one in release builds
14 Don't assume GNotification works on Win32
15 update copyright date in About dialog
16 Don't entity-escape history and bookmark results in location completion
17 Only set tabs' error state if errors come from the main frame
18 Implement Paste and Proceed as an action
19 No Gcr on Win for the moment
20 Yet another Speed Dial CSS update:
21 Port bookmark popover from Granite to Gtk.Popover
22 Make application choosers resizable with a sane default size
23 Use GNotification >= 2.40 and use Midori.App API in webmedia
24 Rework mouse button handling in KatzeArrayAction
25 Don't bind :day in HistoryDatabase.query
26 Make GCR mandatory for all builds
27 Update coub support in mediaHerald
28 history-list: Fix gtk+3 build caused by dropping "using Gtk;"
29 Drop all remaining usages of "using *;"
30 Don't open search engines menu when clearing search action
31 Only remove apps in the sidepanel when left-clicking the delete icon
32 Improve robustness of GTK3-compatibility placeholder text fallback
33 Clean up vapi dependency
34 tls_flags from webkit_web_view_get_tls_info need to be 0
35 Don't add failed pages to history
36 Throw error for wrong paramter in Statement.bind
37 Replace NoJS "allow all pages" setting with "allow local pages"
38 Avoid bugs due to race condition in addons delete dialog
39 Calculate transfer progress at regular intervals to fix 0B/s bug and recalcitrant progess bars
40 Fix warnings occurring with EXTRA_WARNINGS
41 Escape parentheses in adblock_fixup_regexp()
42 Use File.query_exist() on win32 when checking for db to attach
43 Handle _NEW_WINDOW_ACTION explicitly to make _blank targets work
44 Fix undefined behavior uint in mouse gestures
45 fix JavaScript keyup event by calling inherited key-release-event handler in MidoriBrowser
46 Inline renaming of speed dials
47 Handle current_size and last_size of Download being equal
48 Add proper copyright headers to element_hider and autosuggestcontrol
49 Add X-GNOME-UsesNotifications to indicate the use of notifications
50 Fix typo in Bookmarks menu UI definition
51
3v0.5.952v0.5.9
4 Remove dead code from browser and preferences53 Remove dead code from browser and preferences
5 Build-fix: Make PanedAction's Child.widget public54 Build-fix: Make PanedAction's Child.widget public
655
=== modified file 'katze/katze-arrayaction.c'
--- katze/katze-arrayaction.c 2015-03-23 20:00:30 +0000
+++ katze/katze-arrayaction.c 2015-04-19 23:03:51 +0000
@@ -165,7 +165,7 @@
165 *165 *
166 * An item was activated and should be opened in a new tab.166 * An item was activated and should be opened in a new tab.
167 *167 *
168 * Since: 0.6.0168 * Since: 0.5.10
169 **/169 **/
170 signals[ACTIVATE_ITEM_NEW_TAB] = g_signal_new ("activate-item-new-tab",170 signals[ACTIVATE_ITEM_NEW_TAB] = g_signal_new ("activate-item-new-tab",
171 G_TYPE_FROM_CLASS (class),171 G_TYPE_FROM_CLASS (class),
172172
=== modified file 'midori/midori-view.c'
--- midori/midori-view.c 2015-04-12 12:40:38 +0000
+++ midori/midori-view.c 2015-04-19 23:03:51 +0000
@@ -3561,7 +3561,7 @@
3561 *3561 *
3562 * Return value: (allow-none): the widget containing the inspector, or NULL.3562 * Return value: (allow-none): the widget containing the inspector, or NULL.
3563 * 3563 *
3564 * Since: 0.6.03564 * Since: 0.5.10
3565 */3565 */
3566static GtkWidget*3566static GtkWidget*
3567midori_view_web_inspector_get_parent (gpointer inspector)3567midori_view_web_inspector_get_parent (gpointer inspector)
35683568
=== modified file 'tools/release'
--- tools/release 2014-04-03 20:28:14 +0000
+++ tools/release 2015-04-19 23:03:51 +0000
@@ -10,7 +10,8 @@
10# See the file COPYING for the full license text.10# See the file COPYING for the full license text.
1111
12OLDVER=$(grep -r --color=no '^set(VERSION' CMakeLists.txt | sed -r "s@.+ ([0-9.]+)\)@\1@")12OLDVER=$(grep -r --color=no '^set(VERSION' CMakeLists.txt | sed -r "s@.+ ([0-9.]+)\)@\1@")
13NEWVER=$(python -c "print('0.'+str(float('$OLDVER'[2:])+.1))")13NEWVER="$2"
14test -z "$NEWVER" && NEWVER=$(python -c "print('0.'+str(float('$OLDVER'[2:])+.1))")
14if [ "x$1" = "xbefore" ]; then15if [ "x$1" = "xbefore" ]; then
15 echo Bumping from $OLDVER to $NEWVER16 echo Bumping from $OLDVER to $NEWVER
16 sed -i "s@$OLDVER@$NEWVER@g" CMakeLists.txt win32/makedist/midori.nsi17 sed -i "s@$OLDVER@$NEWVER@g" CMakeLists.txt win32/makedist/midori.nsi
@@ -27,10 +28,12 @@
27 rm ChangeLog.old28 rm ChangeLog.old
28 curl http://wiki.xfce.org/_export/raw/midori/contribute | \29 curl http://wiki.xfce.org/_export/raw/midori/contribute | \
29 sed -r 's@\[\[([^|]+)\|([^]]+)\]\]@\1 \2@g' | \30 sed -r 's@\[\[([^|]+)\|([^]]+)\]\]@\1 \2@g' | \
30 sed -r 's@<code( bash|)>|</code>@@g' > HACKING31 sed -r 's@<code( bash|)>|</code>@@g' > HACKING.new
32 test -s HACKING.new && mv HACKING{.new,} || rm HACKING.new
31 curl http://wiki.xfce.org/_export/xhtml/midori/faq | \33 curl http://wiki.xfce.org/_export/xhtml/midori/faq | \
32 sed 's@This is a list of frequently asked questions@This is <a href="http://wiki.xfce.org/midori/faq">a snapshot of the online FAQ</a>@g' | \34 sed 's@This is a list of frequently asked questions@This is <a href="http://wiki.xfce.org/midori/faq">a snapshot of the online FAQ</a>@g' | \
33 sed 's@<link rel="style.*>@<link rel="stylesheet" href="faq.css" />@g' > data/faq.html35 sed 's@<link rel="style.*>@<link rel="stylesheet" href="faq.css" />@g' > data/faq.html.new
36 test -s data/faq.html.new && mv data/faq.html{.new,} || rm data/faq.html.new
34 echo -n bzr commit -p -m "'Bump version to $NEWVER'"37 echo -n bzr commit -p -m "'Bump version to $NEWVER'"
35 case $SHELL in38 case $SHELL in
36 *fish*)39 *fish*)
@@ -49,6 +52,6 @@
49 echo bzr branch lp:~mgiuca/+junk/launchpad-tools52 echo bzr branch lp:~mgiuca/+junk/launchpad-tools
50 fi53 fi
51else54else
52 echo 'Usage: ['$(basename $0)']' 'before|after'55 echo 'Usage: ['$(basename $0)']' 'before|after' [NEW VERSION]
53 exit 156 exit 1
54fi57fi
5558
=== modified file 'win32/makedist/midori.nsi'
--- win32/makedist/midori.nsi 2014-11-10 22:59:26 +0000
+++ win32/makedist/midori.nsi 2015-04-19 23:03:51 +0000
@@ -21,7 +21,7 @@
21; helper defines ;21; helper defines ;
22;;;;;;;;;;;;;;;;;;;22;;;;;;;;;;;;;;;;;;;
23!define PRODUCT_NAME "Midori"23!define PRODUCT_NAME "Midori"
24!define PRODUCT_VERSION "0.5.9"24!define PRODUCT_VERSION "0.5.10"
25!define PRODUCT_BUILD "0"25!define PRODUCT_BUILD "0"
26!define PRODUCT_VERSION_ID "${PRODUCT_VERSION}.${PRODUCT_BUILD}"26!define PRODUCT_VERSION_ID "${PRODUCT_VERSION}.${PRODUCT_BUILD}"
27!define PRODUCT_PUBLISHER "Christian Dywan"27!define PRODUCT_PUBLISHER "Christian Dywan"

Subscribers

People subscribed via source and target branches

to all changes: