1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 17:52:10 +02:00

Final updates for 1.0.0 stable release.

Containing small fixes:
 - updated windows installer
 - small modification to linux default theme (new tab button)
This commit is contained in:
nowrep 2011-11-09 16:58:25 +01:00
parent 8791b9cf50
commit 7808408cc8
11 changed files with 33 additions and 27 deletions

View File

@ -82,13 +82,13 @@
#tabwidget-button-opentabs
{
qproperty-icon: url(images/tabs-list-button.png);
qproperty-fixedsize: 20px 27px;
qproperty-fixedsize: 20px 25px;
}
#tabwidget-button-addtab
{
qproperty-themeIcon: "list-add";
qproperty-fixedsize: 25px 27px;
qproperty-fixedsize: 22px 25px;
}
#tabwidget-button-opentabs::menu-indicator

View File

@ -18,4 +18,5 @@ MimeType=text/html;application/xhtml+xml;
Terminal=false
Type=Application
Icon=qupzilla.png
StartupNotify=true
Categories=Network;WebBrowser;

View File

@ -26,8 +26,8 @@ DEFINE_GUID(IID_ITaskbarList3, 0xea1afb91, 0x9e28, 0x4b86, 0x90, 0xE9, 0x9e, 0x9
// Constructor: variabiles initialization
EcWin7::EcWin7()
, mTaskBar(NULL)
{
mTaskbar = NULL;
mOverlayIcon = NULL;
}

View File

@ -49,13 +49,12 @@ typedef struct _DWM_BLURBEHIND {
BOOL fTransitionOnMaximized;
} DWM_BLURBEHIND, *PDWM_BLURBEHIND;
//typedef struct _MARGINS
//{
// int cxLeftWidth;
// int cxRightWidth;
// int cyTopHeight;
// int cyBottomHeight;
//} MARGINS, *PMARGINS;
typedef struct _MARGINS {
int cxLeftWidth;
int cxRightWidth;
int cyTopHeight;
int cyBottomHeight;
} MARGINS, *PMARGINS;
typedef HRESULT(WINAPI* PtrDwmIsCompositionEnabled)(BOOL* pfEnabled);
typedef HRESULT(WINAPI* PtrDwmExtendFrameIntoClientArea)(HWND hWnd, const MARGINS* pMarInset);

View File

@ -61,7 +61,7 @@
#include "globalfunctions.h"
#include "webhistorywrapper.h"
const QString QupZilla::VERSION = "1.0.0-rc1";
const QString QupZilla::VERSION = "1.0.0";
const QString QupZilla::BUILDTIME = __DATE__" "__TIME__;
const QString QupZilla::AUTHOR = "David Rosca";
const QString QupZilla::COPYRIGHT = "2010-2011";
@ -205,6 +205,14 @@ void QupZilla::setupUi()
}
else {
setGeometry(settings.value("WindowGeometry", QRect(20, 20, 800, 550)).toRect());
if (m_startBehaviour == NewWindow) {
// Moving window +40 x,y to be visible that this is new window
QPoint p = pos();
p.setX(p.x() + 40);
p.setY(p.y() + 40);
move(p);
}
}
locationBarWidth = settings.value("LocationBarWidth", 0).toInt();

View File

@ -18,12 +18,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "QupZilla Association"
VALUE "FileDescription", "QupZilla Web Browser"
VALUE "FileVersion", "1.0.0.rc1"
VALUE "FileVersion", "1.0.0"
VALUE "LegalCopyright", "Copyright (C) 2010-2011 David Rosca"
VALUE "InternalName", "qupzilla"
VALUE "OriginalFilename", "qupzilla.exe"
VALUE "ProductName", "QupZilla"
VALUE "ProductVersion", "1.0.0.rc1"
VALUE "ProductVersion", "1.0.0"
END
END
BLOCK "VarFileInfo"

View File

@ -51,10 +51,11 @@ int main(int argc, char* argv[])
MainApplication app(cmdActions, argc, argv);
if (app.isExited()) {
if (argc == 1) {
std::cout << "QupZilla already running - activating existing window" << std::endl;
}
return 1;
// Not showing any output, otherwise XFCE shows "Failed to execute default browser. I/O error" error
// if (argc == 1) {
// std::cout << "QupZilla already running - activating existing window" << std::endl;
// }
return 0;
}
int result = app.exec();

View File

@ -77,13 +77,9 @@ void NetworkManager::loadSettings()
void NetworkManager::setSSLConfiguration(QNetworkReply* reply)
{
if (reply->property("downReply").toBool()) {
return;
}
if (!reply->sslConfiguration().isNull()) {
QSslCertificate cert = reply->sslConfiguration().peerCertificate();
if (!cert.isValid()) {
if (!cert.isValid() || reply->property("downReply").toBool()) {
return;
}

View File

@ -3,7 +3,7 @@ RequestExecutionLevel admin
SetCompressor /SOLID /FINAL lzma
!define PRODUCT_NAME "QupZilla"
!define /date PRODUCT_VERSION "1.0.0-rc1"
!define /date PRODUCT_VERSION "1.0.0"
!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"
@ -33,8 +33,9 @@ SetCompressor /SOLID /FINAL lzma
!insertmacro MUI_LANGUAGE "Czech"
!insertmacro MUI_LANGUAGE "Slovak"
!insertmacro MUI_LANGUAGE "Dutch"
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "German"
!insertmacro MUI_LANGUAGE "French"
!insertmacro MUI_LANGUAGE "Korean"
!insertmacro MUI_LANGUAGE "Russian"
!insertmacro MUI_LANGUAGE "Spanish"