mirror of https://gitlab.com/basile.b/dexed.git
parent
6eeb2e55d9
commit
eeab0decb9
|
@ -19,14 +19,14 @@ branches:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- ps: |
|
- ps: |
|
||||||
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.22.0/ldc2-1.22.0-windows-x64.7z"
|
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.25.1/ldc2-1.25.1-windows-x64.7z"
|
||||||
$LDC_NME = "C:\ldc.7z";
|
$LDC_NME = "C:\ldc.7z";
|
||||||
$LAZ_URL = "https://gitlab.com/basile.b/laz-bin-cache.git"
|
$LAZ_URL = "https://gitlab.com/basile.b/laz-bin-cache.git"
|
||||||
$LAZ_NME = "laz-bin-cache\lazarus-2.0.10-fpc-3.2.0-win64.exe"
|
$LAZ_NME = "laz-bin-cache\lazarus-2.0.12-fpc-3.2.0-win64.exe"
|
||||||
|
|
||||||
(new-object net.webclient).DownloadFile($LDC_URL, $LDC_NME)
|
(new-object net.webclient).DownloadFile($LDC_URL, $LDC_NME)
|
||||||
7z x $LDC_NME -o"C:\" -y -r
|
7z x $LDC_NME -o"C:\" -y -r
|
||||||
Rename-Item "C:\ldc2-1.22.0-windows-x64" "C:\ldc"
|
Rename-Item "C:\ldc2-1.25.1-windows-x64" "C:\ldc"
|
||||||
|
|
||||||
git clone $LAZ_URL
|
git clone $LAZ_URL
|
||||||
Start-Process -FilePath $LAZ_NME -Wait -ArgumentList "/SILENT", "/SUPPRESSMSGBOXES", "/DIR=C:\lazarus"
|
Start-Process -FilePath $LAZ_NME -Wait -ArgumentList "/SILENT", "/SUPPRESSMSGBOXES", "/DIR=C:\lazarus"
|
||||||
|
|
|
@ -38,7 +38,7 @@ release:
|
||||||
- cd laz-bin-cache
|
- cd laz-bin-cache
|
||||||
- apt install -y ./fpc-laz_3.2.0-1_amd64.deb
|
- apt install -y ./fpc-laz_3.2.0-1_amd64.deb
|
||||||
- apt install -y ./fpc-src_3.2.0-1_amd64.deb
|
- apt install -y ./fpc-src_3.2.0-1_amd64.deb
|
||||||
- apt install -y ./lazarus-project_2.0.10-0_amd64.deb
|
- apt install -y ./lazarus-project_2.0.12-0_amd64.deb
|
||||||
- cd ..
|
- cd ..
|
||||||
script:
|
script:
|
||||||
- bash setup/build-release.sh
|
- bash setup/build-release.sh
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# v3.9.11-dev
|
||||||
|
|
||||||
|
## Regressions fixed
|
||||||
|
|
||||||
|
- releases, linux, gtk2: random crashes when save and open dialogs are displayed. (#79)
|
||||||
|
|
||||||
# v3.9.10
|
# v3.9.10
|
||||||
|
|
||||||
## Bugs fixed
|
## Bugs fixed
|
||||||
|
|
Loading…
Reference in New Issue