mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 02:36:34 +01:00
parent
c618abd30a
commit
500d11cf6f
2
BUILDING
2
BUILDING
@ -86,7 +86,7 @@ Available Defines
|
|||||||
(disabled by default)
|
(disabled by default)
|
||||||
|
|
||||||
example:
|
example:
|
||||||
$ export NONBLOCK_JS_DIALOGS="true"
|
$ export NONBLOCK_JS_DIALOGS="true"
|
||||||
|
|
||||||
|
|
||||||
Windows specific defines:
|
Windows specific defines:
|
||||||
|
@ -27,12 +27,14 @@ d_use_webgl = $$(USE_WEBGL)
|
|||||||
d_w7api = $$(W7API)
|
d_w7api = $$(W7API)
|
||||||
d_kde = $$(KDE)
|
d_kde = $$(KDE)
|
||||||
d_portable = $$(PORTABLE_BUILD)
|
d_portable = $$(PORTABLE_BUILD)
|
||||||
|
d_nonblock_dialogs = $$(NONBLOCK_JS_DIALOGS)
|
||||||
|
|
||||||
equals(d_no_system_datapath, "true") { DEFINES += NO_SYSTEM_DATAPATH }
|
equals(d_no_system_datapath, "true") { DEFINES += NO_SYSTEM_DATAPATH }
|
||||||
equals(d_use_webgl, "true") { DEFINES += USE_WEBGL }
|
equals(d_use_webgl, "true") { DEFINES += USE_WEBGL }
|
||||||
equals(d_w7api, "true") { DEFINES += W7API }
|
equals(d_w7api, "true") { DEFINES += W7API }
|
||||||
equals(d_kde, "true") { DEFINES += KDE }
|
equals(d_kde, "true") { DEFINES += KDE }
|
||||||
equals(d_portable, "true") { DEFINES += PORTABLE_BUILD }
|
equals(d_portable, "true") { DEFINES += PORTABLE_BUILD }
|
||||||
|
equals(d_nonblock_dialogs, "true") { DEFINES += NONBLOCK_JS_DIALOGS }
|
||||||
|
|
||||||
!mac:unix {
|
!mac:unix {
|
||||||
d_prefix = $$(QUPZILLA_PREFIX)
|
d_prefix = $$(QUPZILLA_PREFIX)
|
||||||
|
@ -39,6 +39,11 @@ table.tbl {width: 100%;margin: 15px 0;border-radius: 4px;padding: 0px;border: 2p
|
|||||||
%PATHS-TEXT%
|
%PATHS-TEXT%
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
<h2>%BUILD-CONFIG%</h2>
|
||||||
|
<dl>
|
||||||
|
%BUILD-CONFIG-TEXT%
|
||||||
|
</dl>
|
||||||
|
|
||||||
<h2>%PLUGINS%</h2>
|
<h2>%PLUGINS%</h2>
|
||||||
|
|
||||||
<table class="tbl">
|
<table class="tbl">
|
||||||
|
@ -304,6 +304,7 @@ QString QupZillaSchemeReply::configPage()
|
|||||||
cPage.replace("%CONFIG-ABOUT%", tr("This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports."));
|
cPage.replace("%CONFIG-ABOUT%", tr("This page contains information about QupZilla's current configuration, plugins, etc, all relevant information for troubleshooting. Please include these information when sending bug reports."));
|
||||||
cPage.replace("%BROWSER-IDENTIFICATION%", tr("Browser Identification"));
|
cPage.replace("%BROWSER-IDENTIFICATION%", tr("Browser Identification"));
|
||||||
cPage.replace("%PATHS%", tr("Paths"));
|
cPage.replace("%PATHS%", tr("Paths"));
|
||||||
|
cPage.replace("%BUILD-CONFIG%", tr("Build Configuration"));
|
||||||
cPage.replace("%PREFS%", tr("Preferences"));
|
cPage.replace("%PREFS%", tr("Preferences"));
|
||||||
cPage.replace("%OPTION%", tr("Option"));
|
cPage.replace("%OPTION%", tr("Option"));
|
||||||
cPage.replace("%VALUE%", tr("Value"));
|
cPage.replace("%VALUE%", tr("Value"));
|
||||||
@ -313,15 +314,6 @@ QString QupZillaSchemeReply::configPage()
|
|||||||
cPage.replace("%PL-AUTH%", tr("Author"));
|
cPage.replace("%PL-AUTH%", tr("Author"));
|
||||||
cPage.replace("%PL-DESC%", tr("Description"));
|
cPage.replace("%PL-DESC%", tr("Description"));
|
||||||
|
|
||||||
cPage.replace("%PATHS-TEXT%",
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Profile"), mApp->getActiveProfilPath()) +
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Settings"), mApp->getActiveProfilPath() + "settings.ini") +
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Saved session"), mApp->getActiveProfilPath() + "session.dat") +
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Pinned tabs"), mApp->getActiveProfilPath() + "pinnedtabs.dat") +
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Data"), mApp->DATADIR) +
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Themes"), mApp->THEMESDIR) +
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Translations"), mApp->TRANSLATIONSDIR));
|
|
||||||
|
|
||||||
cPage.replace("%VERSION-INFO%",
|
cPage.replace("%VERSION-INFO%",
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Application version"), QupZilla::VERSION
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Application version"), QupZilla::VERSION
|
||||||
#ifdef GIT_REVISION
|
#ifdef GIT_REVISION
|
||||||
@ -331,10 +323,45 @@ QString QupZillaSchemeReply::configPage()
|
|||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Qt version"), QT_VERSION_STR) +
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Qt version"), QT_VERSION_STR) +
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("WebKit version"), QupZilla::WEBKITVERSION) +
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("WebKit version"), QupZilla::WEBKITVERSION) +
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Build time"), QupZilla::BUILDTIME) +
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Build time"), QupZilla::BUILDTIME) +
|
||||||
#ifdef QUPZILLA_DEBUG_BUILD
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Debugging symbols"), tr("Yes")) +
|
|
||||||
#endif
|
|
||||||
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Platform"), qz_buildSystem()));
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Platform"), qz_buildSystem()));
|
||||||
|
|
||||||
|
cPage.replace("%PATHS-TEXT%",
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Profile"), mApp->getActiveProfilPath()) +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Settings"), mApp->getActiveProfilPath() + "settings.ini") +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Saved session"), mApp->getActiveProfilPath() + "session.dat") +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Pinned tabs"), mApp->getActiveProfilPath() + "pinnedtabs.dat") +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Data"), mApp->DATADIR) +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Themes"), mApp->THEMESDIR) +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Translations"), mApp->TRANSLATIONSDIR));
|
||||||
|
|
||||||
|
QString debugBuild = tr("Disabled");
|
||||||
|
QString webGLEnabled = tr("Disabled");
|
||||||
|
QString w7APIEnabled = tr("Disabled");
|
||||||
|
QString KDEIntegration = tr("Disabled");
|
||||||
|
QString portableBuild = tr("Disabled");
|
||||||
|
|
||||||
|
#ifdef QUPZILLA_DEBUG_BUILD
|
||||||
|
debugBuild = tr("<b>Enabled</b>");
|
||||||
|
#endif
|
||||||
|
#ifdef USE_WEBGL
|
||||||
|
webGLEnabled = tr("<b>Enabled</b>");
|
||||||
|
#endif
|
||||||
|
#if defined(Q_WS_WIN) && defined(W7API)
|
||||||
|
w7APIEnabled = tr("<b>Enabled</b>");
|
||||||
|
#endif
|
||||||
|
#if defined(Q_WS_X11) && defined(KDE)
|
||||||
|
KDEIntegration = tr("<b>Enabled</b>");
|
||||||
|
#endif
|
||||||
|
#ifdef PORTABLE_BUILD
|
||||||
|
portableBuild = tr("<b>Enabled</b>");
|
||||||
|
#endif
|
||||||
|
|
||||||
|
cPage.replace("%BUILD-CONFIG-TEXT%",
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Debug build"), debugBuild) +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("WebGL support"), webGLEnabled) +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Windows 7 API"), w7APIEnabled) +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("KDE integration"), KDEIntegration) +
|
||||||
|
QString("<dt>%1</dt><dd>%2<dd>").arg(tr("Portable build"), portableBuild));
|
||||||
}
|
}
|
||||||
|
|
||||||
QString page = cPage;
|
QString page = cPage;
|
||||||
|
Loading…
Reference in New Issue
Block a user