Skip to content

Commit 4f221cd

Browse files
committed
Release Arora 0.10.2
1 parent ac481c5 commit 4f221cd

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

AUTHORS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Zsombor Gegesy gzsombor@gmail.com
99
Christopher Eby kreed@kreed.org
1010
Vincenzo Reale smart2128@baslug.org
1111
Maia Kozheva sikon@ubuntu.com
12-
axasia axasia@gmail.com
1312
Tor Arne Vestbø tor.arne.vestbo@nokia.com
13+
axasia axasia@gmail.com
1414
Tom Gundersen teg@jklm.no
1515
Kristof Bal kristof.bal@gmail.com
1616
Adam Treat treat@kde.org
@@ -37,12 +37,14 @@ Richard Moore rich@beast.needcoffee.co.uk
3737
Pavol Rusnak stick@gk2.sk
3838
Oscar Blumberg o.blumberg@robertlan.eu.org
3939
ondrejcernos cernoso@gmail.com
40+
mwenge robert@roberthogan.net
4041
Markus Goetz Markus.Goetz@nokia.com
4142
Marius Bugge Monsen mariusbu@pvv.org
4243
Kenneth Rohde Christiansen kenneth.christiansen@openbossa.org
4344
jreznik jreznik@redhat.com
4445
Jonas Gehring jonas.gehring@boolsoft.org
4546
Jocelyn Turcotte jocelyn.turcotte@nokia.com
47+
João Abecasis joao@abecasis.name
4648
Gergely Nagy gergely.nagy@interware.co.hu
4749
Gegesy Zsombor gzsombor@gmail.com
4850
Dominik Riebeling bluebrother@gmx.de

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
0.10.2
2+
The major issues:
3+
- When compiling with Qt 4.6 Arora had been using some API that changes
4+
shortly before the release of Qt 4.6.0 after an API review was done for
5+
the new API in QtWebKit. This release changes the code to build with the
6+
final API that is found in Qt 4.6.0
7+
- A segfault that could occur when opening a URL on a new window from the command-line.
8+
9+
110
0.10.1
211
The major issues:
312
Issue: 666 Sites were showing a "SSL handshake failure". With the new NetworkAccessManagerProxy the signals were being sent to the proxy and not the primary networkaccessmanager.

buildosx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
APP="Arora"
7-
VERSION="0.10.1"
7+
VERSION="0.10.2"
88
#BACKGROUND="src/data/512x512/arora.png"
99

1010
DIR="bundle"

debian-upstream/changelog.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
arora (0.10.1~git##DATE##-1~##DIST##1~upstream1) ##DIST##; urgency=low
1+
arora (0.10.2~git##DATE##-1~##DIST##1~upstream1) ##DIST##; urgency=low
22

33
* Initial release (LP: #231731)
44

generateReleaseContributors

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
./generateAuthors 0.10.0..HEAD | while read line
2+
./generateAuthors 0.10.1..HEAD | while read line
33
do
44
name=`echo $line | sed -e 's/ [^ ]*@[^ ]*//g'`
55
email=`echo $line | sed -e 's/.* //g' | tr [A-Z] [a-z]`

src/browserapplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ BrowserApplication::BrowserApplication(int &argc, char **argv)
105105
{
106106
QCoreApplication::setOrganizationDomain(QLatin1String("arora-browser.org"));
107107
QCoreApplication::setApplicationName(QLatin1String("Arora"));
108-
QCoreApplication::setApplicationVersion(QLatin1String("0.10.1"
108+
QCoreApplication::setApplicationVersion(QLatin1String("0.10.2"
109109
#ifdef GITVERSION
110110
" (Git: " GITCHANGENUMBER " " GITVERSION ")"
111111
#endif

windowsinstaller.nsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
SetCompressor /SOLID /FINAL lzma
44

55
!define PRODUCT_NAME "Arora"
6-
!define /date PRODUCT_VERSION "0.10.1"
6+
!define /date PRODUCT_VERSION "0.10.2"
77
;!define /date PRODUCT_VERSION "Snapshot (%#m-%#d-%#Y)"
88
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\arora.exe"
99
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"

0 commit comments

Comments
 (0)