forked from zealdocs/zeal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/zealdocs/zeal into
rebase-pr1002 Fix Git conflicts of PR zealdocs#1002.
- Loading branch information
Showing
264 changed files
with
3,069 additions
and
2,019 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
version: '{branch}-{build}' | ||
pull_requests: | ||
do_not_increment_build_number: true | ||
branches: | ||
only: | ||
- master | ||
- stable | ||
- /release\/.*/ | ||
image: | ||
- Visual Studio 2015 | ||
- Ubuntu1804 | ||
configuration: Release | ||
platform: | ||
- x86 | ||
- x64 | ||
environment: | ||
APPVEYOR_YML_DISABLE_PS_LINUX: true | ||
matrix: | ||
- ZEAL_PORTABLE_BUILD: "OFF" | ||
- ZEAL_PORTABLE_BUILD: "ON" | ||
matrix: | ||
exclude: | ||
- image: Ubuntu1804 | ||
platform: x86 | ||
init: | ||
- ps: |- | ||
if ($Env:PLATFORM -eq "x64") { | ||
$Env:QT_ROOT = "C:\Qt\5.11\msvc2015_64" | ||
} else { | ||
$Env:QT_ROOT = "C:\Qt\5.11\msvc2015" | ||
} | ||
$Env:Path += ";${Env:QT_ROOT}\bin;C:\Program Files\7-Zip" | ||
install: | ||
- ps: |- | ||
# Install vcpkg toolchain. | ||
$Env:VCPKG_ROOT = "c:\projects\vcpkg-export" | ||
$vcpkgArchive = "vcpkg-export-20181014.4-${Env:PLATFORM}.7z" | ||
appveyor DownloadFile "https://dl.bintray.com/zealdocs/windows-ci/$vcpkgArchive" | ||
7z x $vcpkgArchive -o"${Env:VCPKG_ROOT}" | ||
# Install QtWebKit. | ||
$qtWebKitArchiveBaseName = "qtwebkit-5.212.0_72cfbd7-qt5111-msvc2015-${Env:PLATFORM}" | ||
appveyor Downloadfile "https://dl.bintray.com/zealdocs/windows-ci/$qtWebKitArchiveBaseName.zip" | ||
7z x "$qtWebKitArchiveBaseName.zip" | ||
Get-ChildItem ".\$qtWebKitArchiveBaseName" | Copy -Destination ${Env:QT_ROOT} -Recurse -Force | ||
- sh: |- | ||
sudo apt-get -y -qq update | ||
sudo apt-get -y -qq install \ | ||
--no-install-recommends \ | ||
cmake \ | ||
extra-cmake-modules \ | ||
qt5-default \ | ||
libqt5webkit5-dev \ | ||
libqt5x11extras5-dev \ | ||
libarchive-dev \ | ||
libsqlite3-dev \ | ||
libxcb-keysyms1-dev | ||
before_build: | ||
- ps: |- | ||
Write-Output "Source directory: ${Env:APPVEYOR_BUILD_FOLDER}" | ||
New-Item -ItemType Directory -Force -Path dist | Out-Null | ||
Set-Location -Path dist | ||
# Prepare .sln with CMake: | ||
$cmakeGenerator = "Visual Studio 14 2015" | ||
if ($Env:PLATFORM -eq "x64") { | ||
$cmakeGenerator += " Win64" | ||
} | ||
Write-Output "Generator: $cmakeGenerator" | ||
cmake "${Env:APPVEYOR_BUILD_FOLDER}" ` | ||
-G "$cmakeGenerator" ` | ||
-DZEAL_PORTABLE_BUILD="${Env:ZEAL_PORTABLE_BUILD}" ` | ||
-DCMAKE_BUILD_TYPE="${Env:CONFIGURATION}" ` | ||
-DCMAKE_PREFIX_PATH="${Env:QT_ROOT}" ` | ||
-DCMAKE_TOOLCHAIN_FILE="${Env:VCPKG_ROOT}\scripts\buildsystems\vcpkg.cmake" | ||
Set-Location -Path ${Env:APPVEYOR_BUILD_FOLDER} | ||
- sh: |- | ||
mkdir build | ||
cd build | ||
cmake .. \ | ||
-DZEAL_PORTABLE_BUILD="${ZEAL_PORTABLE_BUILD}" | ||
cd .. | ||
build_script: | ||
- ps: |- | ||
msbuild "dist\ALL_BUILD.vcxproj" /m /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" | ||
- sh: |- | ||
cmake --build build | ||
after_build: | ||
- ps: |- | ||
if ($Env:APPVEYOR_PULL_REQUEST_NUMBER) { | ||
Write-Output "Deployment is disabled for pull requests." | ||
Exit-AppveyorBuild | ||
} | ||
$package = "zeal" | ||
if ($Env:ZEAL_PORTABLE_BUILD -eq "ON") { | ||
$package = $package + "-portable" | ||
} | ||
if ($Env:APPVEYOR_REPO_BRANCH -eq "master") { | ||
$package = $package + "-unstable" | ||
} elseif (${env:APPVEYOR_REPO_BRANCH}.StartsWith("release/")) { | ||
$package = $package + "-stable" | ||
} else { | ||
Write-Output "Skipping deployment for this branch..." | ||
Exit-AppveyorBuild | ||
} | ||
$Env:ZEAL_PKG_NAME = $package | ||
# TODO: Use APPVEYOR_BUILD_VERSION. | ||
$Env:ZEAL_PKG_VERSION = git describe | ForEach-Object {$_ -replace "^v",""} | ||
$binaryDir = "dist\bin\Release" | ||
$deploymentDir = "${Env:ZEAL_PKG_NAME}-${Env:ZEAL_PKG_VERSION}-windows-${Env:PLATFORM}" | ||
Write-Output "Output Directory: $deploymentDir" | ||
New-Item -Type directory -Path . -Name "$deploymentDir" -Force | Out-Null | ||
& windeployqt ` | ||
--no-angle ` | ||
--no-compiler-runtime ` | ||
--no-opengl-sw ` | ||
--no-plugins ` | ||
--no-system-d3d-compiler ` | ||
--no-translations ` | ||
--dir "$deploymentDir" ` | ||
"$binaryDir\zeal.exe" | ||
function AddItem ($path) { | ||
Copy-Item "$path" "$deploymentDir" | ||
Write-Host "Added $path" | ||
} | ||
AddItem "$binaryDir\*" | ||
# OpenSSL is a runtime dependency, so copy it manually. | ||
AddItem "${Env:VCPKG_ROOT}\installed\${Env:PLATFORM}-windows\bin\libeay32.dll" | ||
AddItem "${Env:VCPKG_ROOT}\installed\${Env:PLATFORM}-windows\bin\ssleay32.dll" | ||
function AddQtPlugin ($directory, $plugin) { | ||
if ( -Not (Test-Path "$deploymentDir\$directory")) { | ||
New-Item -ItemType directory -Path "$deploymentDir" -Name "$directory" | Out-Null | ||
} | ||
Copy-Item "${Env:QT_ROOT}\plugins\$directory\q$plugin.dll" "$deploymentDir\$directory" | ||
Write-Host "Added $directory\$plugin.dll" | ||
} | ||
AddQtPlugin "imageformats" "gif" | ||
AddQtPlugin "imageformats" "ico" | ||
AddQtPlugin "imageformats" "jpeg" | ||
AddQtPlugin "platforms" "windows" | ||
AddQtPlugin "styles" "windowsvistastyle" | ||
$archiveName = "$deploymentDir.zip" | ||
& 7z a -mx=9 "$archiveName" "$deploymentDir" | ||
Push-AppveyorArtifact "$archiveName" | ||
test: off | ||
artifacts: | ||
- path: zeal-*.zip | ||
deploy: | ||
- provider: BinTray | ||
username: trollixx | ||
api_key: | ||
secure: AsKi8j1sR34g/9+B22/dJ49X3Uie8TizgQD7lzNvW2/+deWq7oLyCQQUCrqPjOUY | ||
subject: zealdocs | ||
repo: windows-ci | ||
package: $(ZEAL_PKG_NAME) | ||
version: $(ZEAL_PKG_VERSION) | ||
publish: true | ||
override: true | ||
on: | ||
branch: stable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# EditorConfig (https://editorconfig.org) | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_size = 4 | ||
indent_style = space | ||
max_line_length = 100 | ||
trim_trailing_whitespace = true | ||
|
||
[*.{xml,xml.in,yml}] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,13 @@ | |
[![Telegram Channel](https://img.shields.io/badge/follow-on%20telegram-179cde.svg?style=flat-square)](https://telegram.me/zealdocs) | ||
[![Twitter](https://img.shields.io/badge/follow-on%20twitter-1da1f2.svg?style=flat-square)](https://twitter.com/zealdocs) | ||
|
||
[![AppVeyor](https://img.shields.io/appveyor/ci/zealdocs/zeal/master.svg?style=flat-square)](https://ci.appveyor.com/project/zealdocs/zeal) | ||
[![Coverity Scan](https://img.shields.io/coverity/scan/4271.svg?style=flat-square)](https://scan.coverity.com/projects/4271) | ||
|
||
Zeal is a simple offline documentation browser inspired by [Dash](https://kapeli.com/dash). | ||
|
||
![Screenshot](https://i.imgur.com/qBkZduS.png) | ||
|
||
## Build Status | ||
|
||
[![Coverity Scan](https://img.shields.io/coverity/scan/4271.svg?style=flat-square)](https://scan.coverity.com/projects/4271) | ||
|
||
| OS | Build Status | | ||
| -------- | ------------ | | ||
| Linux | [![Shippable](https://img.shields.io/shippable/54ac2ce4d46935d5fbc19b84/master.svg?style=flat-square)](https://app.shippable.com/projects/54ac2ce4d46935d5fbc19b84) | | ||
| Windows | [![AppVeyor](https://img.shields.io/appveyor/ci/zealdocs/zeal/master.svg?style=flat-square)](https://ci.appveyor.com/project/zealdocs/zeal) | | ||
|
||
## Download | ||
|
||
Get binary builds for Windows and Linux from the [download page](https://zealdocs.org/download.html). | ||
|
@@ -32,7 +26,7 @@ After installing Zeal, go to *Tools->Docsets*, select the ones you want, and cli | |
### Required dependencies | ||
|
||
* [CMake](https://cmake.org/). | ||
* [Qt](https://www.qt.io/) version 5.5.1 or above. Required module: Qt WebKit Widgets. | ||
* [Qt](https://www.qt.io/) version 5.9.5 or above. Required module: Qt WebKit Widgets. | ||
* [libarchive](http://libarchive.org/). | ||
* [SQLite](https://sqlite.org/). | ||
* X11 platforms only: Qt X11 Extras and `xcb-util-keysyms`. | ||
|
@@ -76,6 +70,13 @@ We want your feedback! Here's a list of different ways to contact developers and | |
* Finally, for private communications email us at [email protected]. | ||
* And do not forget to follow [@zealdocs](https://twitter.com/zealdocs) on Twitter! | ||
|
||
If you feel generous and want to show some extra appreciation: | ||
|
||
[![Buy me a coffee][buymeacoffee-shield]][buymeacoffee] | ||
|
||
[buymeacoffee]: https://www.buymeacoffee.com/trollixx | ||
[buymeacoffee-shield]: https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png | ||
|
||
## License | ||
|
||
This software is licensed under the terms of the GNU General Public License version 3 (GPLv3). Full text of the license is available in the [COPYING](https://github.com/zealdocs/zeal/blob/master/COPYING) file and [online](http://opensource.org/licenses/gpl-3.0.html). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.