mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Version 2.1.0
This commit is contained in:
parent
db5a260193
commit
4062473e98
27
CHANGELOG
27
CHANGELOG
|
@ -1,3 +1,30 @@
|
||||||
|
Version 2.1.0
|
||||||
|
* released 4 February 2017
|
||||||
|
* bring back spellcheck
|
||||||
|
* bring back support for printing
|
||||||
|
* bring back save page action + support multiple formats
|
||||||
|
* bring back option to delete cookies on close
|
||||||
|
* bring back per-domain user agent settings
|
||||||
|
* show audio playing indicator in tab with possibility to mute
|
||||||
|
* show background activity indicator in pinned tabs
|
||||||
|
* add option to show navigation bar when opening new tab in fullscreen
|
||||||
|
* add option to show bookmarks toolbar when typing in location bar
|
||||||
|
* add option to use native scrollbars
|
||||||
|
* add option to delete cache on close
|
||||||
|
* each tab has now its own search toolbar
|
||||||
|
* lot of HighDPI fixes
|
||||||
|
* fix setting maximum size of cache
|
||||||
|
* fix scrolling with high resolution mouse/touchpad
|
||||||
|
* fix rules for disabling blocking on pages in AdBlock
|
||||||
|
* fix deleting cookies
|
||||||
|
* fix slow search in icons database
|
||||||
|
* fix restoring zoom level of tabs
|
||||||
|
* fix crash when opening web inspector
|
||||||
|
* fix crash of the application when render process crashes
|
||||||
|
* fix tabbar being invisible sometimes after leaving fullscreen
|
||||||
|
* fix sometimes not showing list of windows and tabs in recovery page
|
||||||
|
* Windows: show download progress in taskbar
|
||||||
|
|
||||||
Version 2.0.2
|
Version 2.0.2
|
||||||
* released 24 October 2016
|
* released 24 October 2016
|
||||||
* update default user-agent strings
|
* update default user-agent strings
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ============================================================
|
/* ============================================================
|
||||||
* QupZilla - WebKit based browser
|
* QupZilla - WebKit based browser
|
||||||
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2017 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
|
|
@ -62,7 +62,7 @@ You need to specify path to `macdeployqt` only if it is not in PATH.
|
||||||
Current version
|
Current version
|
||||||
----------------------------------------------------------------------------------------
|
----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
The current stable version of QupZilla is 2.0.2. You can download precompiled packages
|
The current stable version of QupZilla is 2.1.0. 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:
|
||||||
|
|
|
@ -8,7 +8,7 @@ UI_DIR = $$PWD/../build
|
||||||
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
|
# workaround for #849: see https://bugreports.qt-project.org/browse/QTBUG-23196
|
||||||
mocinclude.CONFIG *= fix_target
|
mocinclude.CONFIG *= fix_target
|
||||||
|
|
||||||
QZ_VERSION = 2.0.99
|
QZ_VERSION = 2.1.0
|
||||||
unix: VERSION = $$QZ_VERSION
|
unix: VERSION = $$QZ_VERSION
|
||||||
DEFINES *= QUPZILLA_VERSION=\\\"""$$QZ_VERSION"\\\""
|
DEFINES *= QUPZILLA_VERSION=\\\"""$$QZ_VERSION"\\\""
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ============================================================
|
/* ============================================================
|
||||||
* QupZilla - WebKit based browser
|
* QupZilla - Qt web browser
|
||||||
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2017 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -197,6 +197,11 @@ void ProfileManager::updateProfile(const QString ¤t, const QString &profil
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// No change in 2.1
|
||||||
|
if (prof < Updater::Version("2.1.99")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Nothing for now
|
// Nothing for now
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleGetInfoString</key>
|
<key>CFBundleGetInfoString</key>
|
||||||
<string>2.0.2</string>
|
<string>2.1.0</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>2.0.2</string>
|
<string>2.1.0</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>@TYPEINFO@</string>
|
<string>@TYPEINFO@</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
|
|
|
@ -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 2,0,0,2
|
FILEVERSION 2,1,0,0
|
||||||
PRODUCTVERSION 2,0,0,2
|
PRODUCTVERSION 2,1,0,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", "2.0.2"
|
VALUE "FileVersion", "2.1.0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2010-2014 David Rosca"
|
VALUE "LegalCopyright", "Copyright (C) 2010-2017 David Rosca"
|
||||||
VALUE "InternalName", "qupzilla"
|
VALUE "InternalName", "qupzilla"
|
||||||
VALUE "OriginalFilename", "qupzilla.exe"
|
VALUE "OriginalFilename", "qupzilla.exe"
|
||||||
VALUE "ProductName", "QupZilla"
|
VALUE "ProductName", "QupZilla"
|
||||||
VALUE "ProductVersion", "2.0.2"
|
VALUE "ProductVersion", "2.1.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -24,7 +24,7 @@ RequestExecutionLevel admin
|
||||||
SetCompressor /SOLID /FINAL lzma
|
SetCompressor /SOLID /FINAL lzma
|
||||||
|
|
||||||
!define PRODUCT_NAME "QupZilla"
|
!define PRODUCT_NAME "QupZilla"
|
||||||
!define /date PRODUCT_VERSION "2.0.2"
|
!define /date PRODUCT_VERSION "2.1.0"
|
||||||
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\qupzilla.exe"
|
!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_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
|
||||||
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
|
!define PRODUCT_UNINST_ROOT_KEY "HKLM"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user