Skip to content
This repository has been archived by the owner on May 10, 2018. It is now read-only.

Commit

Permalink
Version 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nowrep committed Feb 14, 2014
1 parent 87cd7e5 commit da1abad
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 1.6.3
* released 14 February 2014
* addded new Spanish (Mexico) translation
* option to change list of SslV3 forced sites in settings.ini
* show error message when downloading AdBlock subscriptions fails
* fixed building on FreeBSD, OS/2

Version 1.6.2
* released 13 February 2014
* workaround for servers not understanding TLSv1 handshake
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ You need to specify path to `macdeployqt` only if it is not in PATH.
Current version
----------------------------------------------------------------------------------------

The current stable version of QupZilla is 1.6.2. You can download precompiled packages
The current stable version of QupZilla is 1.6.3. You can download precompiled packages
and the sources from the download section at [homepage](http://www.qupzilla.com/download).
However, if you want the latest revision, just take the latest code snapshot either by
downloading a tarball or running:
Expand Down
2 changes: 1 addition & 1 deletion src/defines.pri
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ UI_DIR = $$PWD/../build
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
mocinclude.CONFIG *= fix_target

unix: VERSION = 1.6.2
unix: VERSION = 1.6.3

# Please read BUILD information #
#DEFINES *= PORTABLE_BUILD
Expand Down
2 changes: 1 addition & 1 deletion src/lib/app/qupzilla.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
#define MENU_RECEIVER mApp->macMenuReceiver()
#endif

const QString QupZilla::VERSION = "1.6.2";
const QString QupZilla::VERSION = "1.6.3";
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
const QString QupZilla::AUTHOR = "David Rosca";
const QString QupZilla::COPYRIGHT = "2010-2014";
Expand Down
10 changes: 5 additions & 5 deletions src/main/appicon.rc
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "..\lib\data\icons\exeicons\qupzilla.ico"
IDI_ICON2 ICON DISCARDABLE "..\lib\data\icons\exeicons\page.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,6,2,0
PRODUCTVERSION 1,6,2,0
FILEVERSION 1,6,3,0
PRODUCTVERSION 1,6,3,0
FILEFLAGS 0x0L
FILEFLAGSMASK 0x3fL
FILEOS 0x00040004L
Expand All @@ -18,12 +18,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "QupZilla Team"
VALUE "FileDescription", "QupZilla Web Browser"
VALUE "FileVersion", "1.6.2"
VALUE "LegalCopyright", "Copyright (C) 2010-2013 David Rosca"
VALUE "FileVersion", "1.6.3"
VALUE "LegalCopyright", "Copyright (C) 2010-2014 David Rosca"
VALUE "InternalName", "qupzilla"
VALUE "OriginalFilename", "qupzilla.exe"
VALUE "ProductName", "QupZilla"
VALUE "ProductVersion", "1.6.2"
VALUE "ProductVersion", "1.6.3"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/AccessKeysNavigation/akn_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ bool AKN_Plugin::testPlugin()
{
// Let's be sure, require latest version of QupZilla

return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* AKN_Plugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/GnomeKeyringPasswords/gnomekeyringplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void GnomeKeyringPlugin::unload()

bool GnomeKeyringPlugin::testPlugin()
{
return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* GnomeKeyringPlugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/GreaseMonkey/gm_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ void GM_Plugin::unload()

bool GM_Plugin::testPlugin()
{
return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* GM_Plugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/KWalletPasswords/kwalletplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void KWalletPlugin::unload()

bool KWalletPlugin::testPlugin()
{
return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* KWalletPlugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/MouseGestures/mousegesturesplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ bool MouseGesturesPlugin::testPlugin()
{
// Let's be sure, require latest version of QupZilla

return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* MouseGesturesPlugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/PIM/PIM_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ bool PIM_Plugin::testPlugin()
{
// Let's be sure, require latest version of QupZilla

return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* PIM_Plugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/StatusBarIcons/statusbariconsplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void StatusBarIconsPlugin::unload()

bool StatusBarIconsPlugin::testPlugin()
{
return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* StatusBarIconsPlugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/TestPlugin/testplugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ bool TestPlugin::testPlugin()
//There should be some testing if plugin is loaded correctly
//If this function returns false, plugin is automatically unloaded

return (QupZilla::VERSION == QLatin1String("1.6.2"));
return (QupZilla::VERSION == QLatin1String("1.6.3"));
}

QTranslator* TestPlugin::getTranslator(const QString &locale)
Expand Down
2 changes: 1 addition & 1 deletion windows/installer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RequestExecutionLevel admin
SetCompressor /SOLID /FINAL lzma

!define PRODUCT_NAME "QupZilla"
!define /date PRODUCT_VERSION "1.6.2"
!define /date PRODUCT_VERSION "1.6.3"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\qupzilla.exe"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
Expand Down

0 comments on commit da1abad

Please sign in to comment.