1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00
Go to file
Philipp Wiesemann 0e47899791 GreaseMonkey: Fix GM_listValues() listing nothing
The function GM_listValues() got broken when the source file "values.js"
was minimized into "values.min.js" because the optimizing tool was not
aware that the string containing the placeholder (%1) is not final and
will be changed later. It optimized away the expression which gets the
length of the string and replaced it with its static value (2). This was
a problem because not the length of the placeholder (%1) but the length
of the current script id is needed to extract prefixes from the keys in
the local storage. Failing to correctly extract the prefixes prevented
finding the entries for the current script. This was fixed by comparing
prefixes without extracting new strings. It works around the need to get
the length of the id string and therefore the breaking optimization.

An unrelated and redundant variable declaration was also removed.
2015-10-23 22:45:21 +02:00
.tx [Transifex] Added .tx/config 2014-04-26 12:44:26 +02:00
bin Windows10: Fix toolbar's background of "windows" theme. 2015-10-22 20:48:37 +02:00
git_hooks [git-hooks] New hook for checking copyright year. 2013-01-22 23:30:59 +01:00
haiku Fix typos in launcher and installer 2015-10-22 20:53:23 +02:00
linux Fix id in appdata file 2015-10-22 22:00:14 +02:00
mac [Mac] Fixed invocation of create_dmg.sh in macdeploy.sh 2014-04-14 10:36:38 +02:00
other Updated translations + uploaded missing files. 2012-01-03 21:05:48 +01:00
scripts [Benchmarks+Autotests] Fixed building with Qt5 and KWallet 2014-04-13 10:48:01 +02:00
src GreaseMonkey: Fix GM_listValues() listing nothing 2015-10-23 22:45:21 +02:00
tests Fix QzTools::ensureUniqueName again 2015-10-09 12:26:13 +02:00
translations Updated empty.ts 2014-11-15 11:59:48 +01:00
windows Update installer for Qt 5 2015-10-22 20:55:29 +02:00
.gitignore Initial port to QtWebEngine 2015-01-27 11:01:52 +01:00
.travis.yml.disabled Disable Travis-CI 2015-10-12 12:12:18 +02:00
AUTHORS Fix typos in documentation 2015-10-22 20:51:18 +02:00
BUILDING Fix typos in documentation 2015-10-22 20:51:18 +02:00
CHANGELOG 1.8.8 is now released 2015-10-23 12:47:11 +02:00
COPYRIGHT New year 2015 2015-01-01 12:08:46 +01:00
FAQ Closing last tab on second window will always close the window. 2012-04-17 14:00:32 +02:00
GPLv3 Initial commit 2011-03-02 16:57:41 +01:00
QupZilla.pro Verify that QtWebEngine 5.6 is available 2015-10-21 11:04:21 +02:00
README.md 1.8.8 is now released 2015-10-23 12:47:11 +02:00

QupZilla Web Browser - QtWebEngine

Build Status
Homepage: http://www.qupzilla.com
Blog: http://blog.qupzilla.com
IRC: #qupzilla at irc.freenode.net
Translations: https://www.transifex.com

THIS IS QTWEBENGINE BRANCH

Master branch is now for QtWebEngine (>= 5.6).

For QtWebEngine (= 5.5), please use qt5.5
For QtWebKit, please use v1.8

About QupZilla

QupZilla is a new and very fast QtWebEngine browser. It aims to be a lightweight web browser available through all major platforms. This project has been originally started only for educational purposes. But from its start, QupZilla has grown into a feature-rich browser.

QupZilla has all standard functions you expect from a web browser. It includes bookmarks, history (both also in sidebar) and tabs. Above that, it has by default enabled blocking ads with a built-in AdBlock plugin.

History

The very first version of QupZilla has been released in December 2010 and it was written in Python with PyQt4 bindings. After a few versions, QupZilla has been completely rewritten in C++ with the Qt Framework. The Windows version of QupZilla was compiled using MinGW, but due to a huge problem with Flash, it is now compiled with Microsoft Visual C++ Compiler 2008. First public release was 1.0.0-b4.

Until version 2.0, QupZilla was using QtWebKit. QtWebKit is now deprecated and new versions are using QtWebEngine.

Compiling

Before you start compiling, make sure that you have installed the Qt (>= 5.6) development libraries and you have read the BUILDING information.

Linux

  • OpenSSL (libcrypto) is required
  • xcb libraries when building without NO_X11

Windows

  • OpenSSL (libeay32) is required

Then you can start compiling by running this commands:

$ qmake
$ make

After a successful compilation the executable binary can be found in the bin/ directory. On Fedora and possibly other Linux distributions you need to replace qmake with qmake-qt5.

On Linux/Unix: To install QupZilla, run this command: (it may be necessary to run it as root)

$ make install

On Mac OS X: To deploy QupZilla in dmg image, run this command:

$ ./mac/macdeploy.sh full-path-to-macdeployqt

You need to specify path to macdeployqt only if it is not in PATH.

Current version

The current stable version of QupZilla is 1.8.8. You can download precompiled packages and the sources from the download section at homepage. However, if you want the latest revision, just take the latest code snapshot either by downloading a tarball or running:

$ git clone git://github.com/QupZilla/qupzilla.git

If you are using Ubuntu, you can download QupZilla from PPA:

$ sudo add-apt-repository ppa:nowrep/qupzilla
$ sudo apt-get update
$ sudo apt-get install qupzilla

FAQ and Changelog

If you are experiencing some sort of problem, please read the FAQ before you open an issue.

FAQ | Changelog | Bug Reports