mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Version 1.3.5
This commit is contained in:
parent
5d80f4b380
commit
eddc51734a
|
@ -1,5 +1,5 @@
|
||||||
Version 1.3.5
|
Version 1.3.5
|
||||||
* not yet released
|
* released 16 September 2012
|
||||||
* new Persion translation
|
* new Persion translation
|
||||||
* option to remove web search bar
|
* option to remove web search bar
|
||||||
* warning user when removing page from speed dial
|
* warning user when removing page from speed dial
|
||||||
|
|
|
@ -58,7 +58,7 @@ You need to specify path to `macdeployqt` only if it is not in PATH.
|
||||||
Current version
|
Current version
|
||||||
----------------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
The current released version of QupZilla is 1.3.1. You can download precompiled packages
|
The current released version of QupZilla is 1.3.5. You can download precompiled packages
|
||||||
and the sources from the download section at [homepage](http://www.qupzilla.com/download).
|
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
|
However, if you want the latest revision, just take the latest code snapshot either by
|
||||||
downloading a tarball or running:
|
downloading a tarball or running:
|
||||||
|
|
|
@ -3,7 +3,7 @@ OBJECTS_DIR = $$PWD/../build
|
||||||
MOC_DIR = $$PWD/../build
|
MOC_DIR = $$PWD/../build
|
||||||
RCC_DIR = $$PWD/../build
|
RCC_DIR = $$PWD/../build
|
||||||
UI_DIR = $$PWD/../build
|
UI_DIR = $$PWD/../build
|
||||||
unix: VERSION = 1.3.1
|
unix: VERSION = 1.3.5
|
||||||
|
|
||||||
# Please read BUILD information #
|
# Please read BUILD information #
|
||||||
#DEFINES *= NO_SYSTEM_DATAPATH
|
#DEFINES *= NO_SYSTEM_DATAPATH
|
||||||
|
|
|
@ -86,7 +86,7 @@
|
||||||
#include <X11/Xatom.h>
|
#include <X11/Xatom.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
const QString QupZilla::VERSION = "1.3.1";
|
const QString QupZilla::VERSION = "1.3.5";
|
||||||
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
|
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
|
||||||
const QString QupZilla::AUTHOR = "David Rosca";
|
const QString QupZilla::AUTHOR = "David Rosca";
|
||||||
const QString QupZilla::COPYRIGHT = "2010-2012";
|
const QString QupZilla::COPYRIGHT = "2010-2012";
|
||||||
|
|
|
@ -1155,7 +1155,7 @@ bool WebView::eventFilter(QObject* obj, QEvent* event)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
QEvent::Type type;
|
QEvent::Type type = QEvent::TouchUpdate;
|
||||||
QTouchEvent::TouchPoint touchPoint;
|
QTouchEvent::TouchPoint touchPoint;
|
||||||
touchPoint.setId(0);
|
touchPoint.setId(0);
|
||||||
touchPoint.setScreenPos(ev->globalPos());
|
touchPoint.setScreenPos(ev->globalPos());
|
||||||
|
|
|
@ -4,8 +4,8 @@ IDI_ICON1 ICON DISCARDABLE "..\lib\data\icons\exeicons\qupzilla.ico"
|
||||||
IDI_ICON2 ICON DISCARDABLE "..\lib\data\icons\exeicons\page.ico"
|
IDI_ICON2 ICON DISCARDABLE "..\lib\data\icons\exeicons\page.ico"
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,3,1,0
|
FILEVERSION 1,3,5,0
|
||||||
PRODUCTVERSION 1,3,1,0
|
PRODUCTVERSION 1,3,5,0
|
||||||
FILEFLAGS 0x0L
|
FILEFLAGS 0x0L
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
FILEOS 0x00040004L
|
FILEOS 0x00040004L
|
||||||
|
@ -18,12 +18,12 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "QupZilla Team"
|
VALUE "CompanyName", "QupZilla Team"
|
||||||
VALUE "FileDescription", "QupZilla Web Browser"
|
VALUE "FileDescription", "QupZilla Web Browser"
|
||||||
VALUE "FileVersion", "1.3.1"
|
VALUE "FileVersion", "1.3.5"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2010-2012 David Rosca"
|
VALUE "LegalCopyright", "Copyright (C) 2010-2012 David Rosca"
|
||||||
VALUE "InternalName", "qupzilla"
|
VALUE "InternalName", "qupzilla"
|
||||||
VALUE "OriginalFilename", "qupzilla.exe"
|
VALUE "OriginalFilename", "qupzilla.exe"
|
||||||
VALUE "ProductName", "QupZilla"
|
VALUE "ProductName", "QupZilla"
|
||||||
VALUE "ProductVersion", "1.3.1"
|
VALUE "ProductVersion", "1.3.5"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -62,7 +62,7 @@ bool AKN_Plugin::testPlugin()
|
||||||
{
|
{
|
||||||
// Let's be sure, require latest version of QupZilla
|
// Let's be sure, require latest version of QupZilla
|
||||||
|
|
||||||
return (QupZilla::VERSION == QLatin1String("1.3.1"));
|
return (QupZilla::VERSION == QLatin1String("1.3.5"));
|
||||||
}
|
}
|
||||||
|
|
||||||
QTranslator* AKN_Plugin::getTranslator(const QString &locale)
|
QTranslator* AKN_Plugin::getTranslator(const QString &locale)
|
||||||
|
|
|
@ -62,7 +62,7 @@ void GM_Plugin::unload()
|
||||||
|
|
||||||
bool GM_Plugin::testPlugin()
|
bool GM_Plugin::testPlugin()
|
||||||
{
|
{
|
||||||
return (QupZilla::VERSION == QLatin1String("1.3.1"));
|
return (QupZilla::VERSION == QLatin1String("1.3.5"));
|
||||||
}
|
}
|
||||||
|
|
||||||
QTranslator* GM_Plugin::getTranslator(const QString &locale)
|
QTranslator* GM_Plugin::getTranslator(const QString &locale)
|
||||||
|
|
|
@ -64,7 +64,7 @@ bool MouseGesturesPlugin::testPlugin()
|
||||||
{
|
{
|
||||||
// Let's be sure, require latest version of QupZilla
|
// Let's be sure, require latest version of QupZilla
|
||||||
|
|
||||||
return (QupZilla::VERSION == QLatin1String("1.3.1"));
|
return (QupZilla::VERSION == QLatin1String("1.3.5"));
|
||||||
}
|
}
|
||||||
|
|
||||||
QTranslator* MouseGesturesPlugin::getTranslator(const QString &locale)
|
QTranslator* MouseGesturesPlugin::getTranslator(const QString &locale)
|
||||||
|
|
|
@ -65,7 +65,7 @@ bool PIM_Plugin::testPlugin()
|
||||||
{
|
{
|
||||||
// Let's be sure, require latest version of QupZilla
|
// Let's be sure, require latest version of QupZilla
|
||||||
|
|
||||||
return (QupZilla::VERSION == QLatin1String("1.3.1"));
|
return (QupZilla::VERSION == QLatin1String("1.3.5"));
|
||||||
}
|
}
|
||||||
|
|
||||||
QTranslator* PIM_Plugin::getTranslator(const QString &locale)
|
QTranslator* PIM_Plugin::getTranslator(const QString &locale)
|
||||||
|
|
|
@ -92,7 +92,7 @@ bool TestPlugin::testPlugin()
|
||||||
//There should be some testing if plugin is loaded correctly
|
//There should be some testing if plugin is loaded correctly
|
||||||
//If this function returns false, plugin is automatically unloaded
|
//If this function returns false, plugin is automatically unloaded
|
||||||
|
|
||||||
return (QupZilla::VERSION == QLatin1String("1.3.1"));
|
return (QupZilla::VERSION == QLatin1String("1.3.5"));
|
||||||
}
|
}
|
||||||
|
|
||||||
QTranslator* TestPlugin::getTranslator(const QString &locale)
|
QTranslator* TestPlugin::getTranslator(const QString &locale)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user