mirror of
https://github.com/zealdocs/zeal.git
synced 2026-08-29 08:34:50 +08:00
Use HTTPS across the project where possible
This commit is contained in:
@@ -10,11 +10,11 @@
|
||||
>
|
||||
> (from WordNet 3.0)
|
||||
|
||||
Zeal is a simple offline documentation browser inspired by [Dash](http://kapeli.com/dash/).
|
||||
Zeal is a simple offline documentation browser inspired by [Dash](https://kapeli.com/dash).
|
||||
|
||||

|
||||

|
||||
|
||||
[More screenshots](http://imgur.com/a/eVi97)
|
||||
[More screenshots](https://imgur.com/a/eVi97)
|
||||
|
||||
## Build Status
|
||||
|
||||
@@ -27,7 +27,7 @@ Windows | [.
|
||||
Get binary builds for Windows and Linux from the [download page](https://zealdocs.org/download.html).
|
||||
|
||||
## How to use
|
||||
|
||||
@@ -61,4 +61,4 @@ If you prefer, you can start Zeal with a query from command line:
|
||||
|
||||
## Creating your own docsets
|
||||
|
||||
You can use [Dash's instructions for generating docsets](http://kapeli.com/docsets).
|
||||
You can use [Dash's instructions for generating docsets](https://kapeli.com/docsets).
|
||||
|
||||
+1
-1
@@ -231,7 +231,7 @@ int main(int argc, char *argv[])
|
||||
QObject::tr("Qt SQLite driver is not available."),
|
||||
QMessageBox::Close, QMessageBox::Help);
|
||||
if (ret == QMessageBox::Help)
|
||||
QDesktopServices::openUrl(QStringLiteral("http://zealdocs.org/contact.html"));
|
||||
QDesktopServices::openUrl(QStringLiteral("https://zealdocs.org/contact.html"));
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -11,8 +11,8 @@
|
||||
</div>
|
||||
<div class="dynamic"></div>
|
||||
<footer>
|
||||
<p><a href="http://zealdocs.org">zealdocs.org</a> | <a href="https://twitter.com/zealdocs">@zealdocs</a><p>
|
||||
<p><small><a href="http://www.kapeli.com/dash">Get Dash for OS X or iOS</a></small><p>
|
||||
<p><a href="https://zealdocs.org">zealdocs.org</a> | <a href="https://twitter.com/zealdocs">@zealdocs</a><p>
|
||||
<p><small><a href="https://www.kapeli.com/dash">Get Dash for OS X or iOS</a></small><p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -77,13 +77,13 @@
|
||||
<br><br>
|
||||
Copyright &copy; Zeal Developers, 2013-2015.
|
||||
<br>
|
||||
<a href="http://zealdocs.org">http://zealdocs.org</a>
|
||||
<a href="https://zealdocs.org">zealdocs.org</a>
|
||||
<br>
|
||||
<a href="irc://irc.freenode.net/zealdocs">#zealdocs</a> on <a href="http://www.freenode.net">Freenode</a>
|
||||
<br><br>
|
||||
Zeal is an open source software available under the terms of General Public License version 3 (<a href="http://www.gnu.org/copyleft/gpl.html">GPLv3</a>).
|
||||
<br><br>
|
||||
Docsets are courtesy of <a href="http://kapeli.com/dash">Dash</a>.</string>
|
||||
Docsets are courtesy of <a href="https://kapeli.com/dash">Dash</a>.</string>
|
||||
</property>
|
||||
<property name="alignment">
|
||||
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
|
||||
|
||||
@@ -516,7 +516,7 @@
|
||||
<item>
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="text">
|
||||
<string><i>Docsets are provided by <a href="http://kapeli.com/dash">Dash</a>, the OS X Documentation Browser.</i></string>
|
||||
<string><i>Docsets are provided by <a href="https://kapeli.com/dash">Dash</a>, the OS X Documentation Browser.</i></string>
|
||||
</property>
|
||||
<property name="textFormat">
|
||||
<enum>Qt::RichText</enum>
|
||||
|
||||
@@ -176,7 +176,7 @@ MainWindow::MainWindow(Core::Application *app, QWidget *parent) :
|
||||
QString(tr("A new version <b>%1</b> is available. Open download page?")).arg(version),
|
||||
QMessageBox::Yes, QMessageBox::No);
|
||||
if (ret == QMessageBox::Yes)
|
||||
QDesktopServices::openUrl(QStringLiteral("http://zealdocs.org/download.html"));
|
||||
QDesktopServices::openUrl(QStringLiteral("https://zealdocs.org/download.html"));
|
||||
});
|
||||
|
||||
m_backMenu = new QMenu(ui->backButton);
|
||||
|
||||
Reference in New Issue
Block a user