New version of kiwix-desktop.

This commit is contained in:
Matthieu Gautier 2020-04-20 10:10:45 +02:00
parent 60e3e755e1
commit 4b080dd975
3 changed files with 10 additions and 10 deletions

View File

@ -9,8 +9,8 @@ environment:
MSYS2_ARG_CONV_EXCL: '-Tp' MSYS2_ARG_CONV_EXCL: '-Tp'
MINGW64_RUN: 'C:\msys64\usr\bin\bash.exe --login -c' MINGW64_RUN: 'C:\msys64\usr\bin\bash.exe --login -c'
MSYSTEM: 'MINGW64' MSYSTEM: 'MINGW64'
KIWIX_DESKTOP_VERSION: '2.0' KIWIX_DESKTOP_VERSION: '2.0.1'
KIWIX_DESKTOP_RELEASE: 0 KIWIX_DESKTOP_RELEASE: 1
init: init:

View File

@ -1,4 +1,4 @@
REM ======================================================== REM ========================================================
REM Install kiwix-tools REM Install kiwix-tools
curl -fsSL -O https://download.kiwix.org/release/kiwix-tools/kiwix-tools_win-i686-3.1.0.zip || exit /b 1 curl -fsSL -O https://download.kiwix.org/release/kiwix-tools/kiwix-tools_win-i686-3.1.0-1.zip || exit /b 1
7z e kiwix-tools_win-i686-3.1.0.zip -o%EXTRA_DIR%\bin kiwix-serve.exe || exit /b 1 7z e kiwix-tools_win-i686-3.1.0.zip -o%EXTRA_DIR%\bin kiwix-serve.exe || exit /b 1

View File

@ -6,7 +6,7 @@ main_project_versions = {
'libzim': '6.1.1', 'libzim': '6.1.1',
'zim-tools': '1.1.1', 'zim-tools': '1.1.1',
'zimwriterfs': '1.3.9', 'zimwriterfs': '1.3.9',
'kiwix-desktop': '2.0' # Also change KIWIX_DESKTOP_VERSION and KIWIX_DESKTOP_RELEASE in appveyor.yml 'kiwix-desktop': '2.0.1' # Also change KIWIX_DESKTOP_VERSION and KIWIX_DESKTOP_RELEASE in appveyor.yml
# You need to do the release process of kiwix-tools and kiwix-desktop in two separated process. # You need to do the release process of kiwix-tools and kiwix-desktop in two separated process.
} }
@ -31,12 +31,12 @@ main_project_versions = {
# - set KIWIX_DESKTOP_RELEASE to 0 # - set KIWIX_DESKTOP_RELEASE to 0
release_versions = { release_versions = {
'libzim': 0, # Depends of base deps (was 0) 'libzim': None, # Depends of base deps (was 0)
'kiwix-lib': 0, # Depends of libzim (was 0) 'kiwix-lib': None, # Depends of libzim (was 0)
'kiwix-tools': 1, # Depends of kiwix-lib and libzim (was 0) 'kiwix-tools': None, # Depends of kiwix-lib and libzim (was 1)
'zim-tools': 0, # Depends of libzim (was 0) 'zim-tools': None, # Depends of libzim (was 0)
'zimwriterfs': 1, # Depends of libzim (was 0) 'zimwriterfs': None, # Depends of libzim (was 1)
'kiwix-desktop': None # Depends of kiwix-lib and libzim (was 0) 'kiwix-desktop': 0 # Depends of kiwix-lib and libzim (was 0)
} }