mirror of https://gitlab.com/basile.b/dexed.git
parent
8831790057
commit
f8ad7162b1
|
@ -22,13 +22,13 @@ install:
|
||||||
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.27.1/ldc2-1.27.1-windows-x64.7z"
|
$LDC_URL = "https://github.com/ldc-developers/ldc/releases/download/v1.27.1/ldc2-1.27.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.12-fpc-3.2.0-win64.exe"
|
$LAZ_NME = "laz-bin-cache\lazarus-2.2.0-fpc-3.2.2-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.27.1-windows-x64" "C:\ldc"
|
Rename-Item "C:\ldc2-1.27.1-windows-x64" "C:\ldc"
|
||||||
|
|
||||||
git clone $LAZ_URL
|
git clone $LAZ_URL --depth=1
|
||||||
Start-Process -FilePath $LAZ_NME -Wait -ArgumentList "/SILENT", "/SUPPRESSMSGBOXES", "/DIR=C:\lazarus"
|
Start-Process -FilePath $LAZ_NME -Wait -ArgumentList "/SILENT", "/SUPPRESSMSGBOXES", "/DIR=C:\lazarus"
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
|
|
|
@ -34,11 +34,11 @@ release:
|
||||||
- update-alternatives --config ld
|
- update-alternatives --config ld
|
||||||
- ld --version
|
- ld --version
|
||||||
# lazarus
|
# lazarus
|
||||||
- git clone https://gitlab.com/basile.b/laz-bin-cache.git
|
- git clone https://gitlab.com/basile.b/laz-bin-cache.git --depth=1
|
||||||
- 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.2-210709_amd64.deb
|
||||||
- apt install -y ./fpc-src_3.2.0-1_amd64.deb
|
- apt install -y ./fpc-src_3.2.2-210709_amd64.deb
|
||||||
- apt install -y ./lazarus-project_2.0.12-0_amd64.deb
|
- apt install -y ./lazarus-project_2.2.0-0_amd64.deb
|
||||||
- cd ..
|
- cd ..
|
||||||
script:
|
script:
|
||||||
- bash setup/build-release.sh
|
- bash setup/build-release.sh
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
# v3.9.18-dev
|
# v3.9.18-beta.1
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
||||||
- Search and Replace: after a failed search give the editor the focus back.
|
- Search and Replace: after a failed search give the editor the focus back.
|
||||||
- It's possible to open ".mak" or "makefile" files as projects. The project inspector will display the rules as configurations and the content of "src/", "include/", "import/" as source files.
|
- It's possible to open ".mak" or "makefile" files as projects. The project inspector will display the rules as configurations and the content of "src/", "include/", "import/" as source files.
|
||||||
- Added symbolic strings CLN (CaretLineNUmber) and CCN (CaretColumnNumber).
|
- Added new symbolic strings _CLN_ (CaretLineNUmber) and _CCN_ (CaretColumnNumber).
|
||||||
|
|
||||||
## Bugs fixed
|
## Bugs fixed
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
||||||
## Other
|
## Other
|
||||||
|
|
||||||
- dexed-d does not rely on the old "iz" library anymore.
|
- dexed-d does not rely on the old "iz" library anymore.
|
||||||
|
- last version that can be build with Lazarus 2.1.z
|
||||||
|
|
||||||
# v3.9.17
|
# v3.9.17
|
||||||
|
|
||||||
|
|
|
@ -25,8 +25,8 @@ if [ ! -f "../bin/libdexed-d.so" ]; then
|
||||||
echo "this explains linking issues..."
|
echo "this explains linking issues..."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
cp "../bin/libdexed-d.so" "/lib64/libdexed-d.so"
|
#cp "../bin/libdexed-d.so" "/lib64/libdexed-d.so"
|
||||||
cp "../bin/libdexed-d.so" "/lib/libdexed-d.so"
|
#cp "../bin/libdexed-d.so" "/lib/libdexed-d.so"
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
# dexed
|
# dexed
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v3.9.17
|
v3.9.18-beta.1
|
||||||
|
|
|
@ -41,7 +41,6 @@ inherited InfoWidget: TInfoWidget
|
||||||
BorderSpacing.Around = 8
|
BorderSpacing.Around = 8
|
||||||
Font.Style = [fsBold]
|
Font.Style = [fsBold]
|
||||||
Layout = tlCenter
|
Layout = tlCenter
|
||||||
ParentColor = False
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
end
|
end
|
||||||
object Label2: TLabel
|
object Label2: TLabel
|
||||||
|
@ -52,10 +51,9 @@ inherited InfoWidget: TInfoWidget
|
||||||
Align = alClient
|
Align = alClient
|
||||||
Alignment = taCenter
|
Alignment = taCenter
|
||||||
BorderSpacing.Around = 8
|
BorderSpacing.Around = 8
|
||||||
Caption = 'Licensed under the terms of the BSL-1.0'#10'©Basile Burg, 2014-2021'
|
Caption = 'Licensed under the terms of the BSL-1.0'#10'©Basile Burg, 2014-2022'
|
||||||
Font.Style = [fsItalic]
|
Font.Style = [fsItalic]
|
||||||
Layout = tlCenter
|
Layout = tlCenter
|
||||||
ParentColor = False
|
|
||||||
ParentFont = False
|
ParentFont = False
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -87,6 +85,7 @@ inherited InfoWidget: TInfoWidget
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
inherited toolbar: TDexedToolBar
|
inherited toolbar: TDexedToolBar
|
||||||
|
Height = 30
|
||||||
Width = 279
|
Width = 279
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue