mirror of https://gitlab.com/basile.b/dexed.git
docs, update required Lazarus version and warn if compiled with laz < 2.2
This commit is contained in:
parent
d61e2120fb
commit
8831790057
|
@ -8,7 +8,7 @@ Dexed is mostly programmed in Object Pascal, using the the [Lazarus development
|
||||||
## Pre-requisites
|
## Pre-requisites
|
||||||
|
|
||||||
* Git
|
* Git
|
||||||
* [Download](http://lazarus.freepascal.org/index.php?page=downloads) and setup the latest Lazarus version (>= 2.0.10) and FPC + FPC sources (= 3.2.0) for your platform.
|
* [Download](http://lazarus.freepascal.org/index.php?page=downloads) and setup the latest Lazarus version (>= 2.2.0) and FPC + FPC sources (= 3.2.2) for your platform.
|
||||||
* Windows: the three packages are bundled in an installer.
|
* Windows: the three packages are bundled in an installer.
|
||||||
* Linux: the three packages must be downloaded and setup individually. It's recommended to download the packages from _SourceForge_ and not from the official repository of the distribution because they don't always propose the latest version.
|
* Linux: the three packages must be downloaded and setup individually. It's recommended to download the packages from _SourceForge_ and not from the official repository of the distribution because they don't always propose the latest version.
|
||||||
* [Download](https://github.com/ldc-developers/ldc/releases) and setup LDC2, the LLVM-based D compiler. It is used to compile the part of the IDE that's written in D, a library called _libdexed-d_. LDC2 binaries must be visible in the system PATH variable. Note that building _libdexed-d_ is automatic.
|
* [Download](https://github.com/ldc-developers/ldc/releases) and setup LDC2, the LLVM-based D compiler. It is used to compile the part of the IDE that's written in D, a library called _libdexed-d_. LDC2 binaries must be visible in the system PATH variable. Note that building _libdexed-d_ is automatic.
|
||||||
|
|
|
@ -1758,6 +1758,8 @@ begin
|
||||||
DockMaster.MakeDockSite(Self, [akBottom], admrpChild);
|
DockMaster.MakeDockSite(Self, [akBottom], admrpChild);
|
||||||
DockMaster.OnShowOptions := @ShowAnchorDockOptions;
|
DockMaster.OnShowOptions := @ShowAnchorDockOptions;
|
||||||
{$if lcl_fullversion < 2020000}
|
{$if lcl_fullversion < 2020000}
|
||||||
|
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
|
||||||
|
{$WARNING Support will be removed after Lazarus 2.2.2 release}
|
||||||
DockMaster.HeaderStyle := adhsPoints;
|
DockMaster.HeaderStyle := adhsPoints;
|
||||||
{$else}
|
{$else}
|
||||||
DockMaster.HeaderStyle := 'Points';
|
DockMaster.HeaderStyle := 'Points';
|
||||||
|
@ -3764,6 +3766,8 @@ begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{$if lcl_fullversion < 2020000}
|
{$if lcl_fullversion < 2020000}
|
||||||
|
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
|
||||||
|
{$WARNING Support will be removed after Lazarus 2.2.2 release}
|
||||||
procedure TMainForm.updateFloatingWidgetOnTop(onTop: boolean);
|
procedure TMainForm.updateFloatingWidgetOnTop(onTop: boolean);
|
||||||
var
|
var
|
||||||
widg: TDexedWidget;
|
widg: TDexedWidget;
|
||||||
|
|
|
@ -848,6 +848,8 @@ begin
|
||||||
// - TextView visibility is increased so this is not the standard way of getting the infos.
|
// - TextView visibility is increased so this is not the standard way of getting the infos.
|
||||||
|
|
||||||
{$if lcl_fullversion < 2020000}
|
{$if lcl_fullversion < 2020000}
|
||||||
|
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
|
||||||
|
{$WARNING Support will be removed after Lazarus 2.2.2 release}
|
||||||
start := fMemo.TextView.CollapsedLineForFoldAtLine(i);
|
start := fMemo.TextView.CollapsedLineForFoldAtLine(i);
|
||||||
{$else}
|
{$else}
|
||||||
start := TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).CollapsedLineForFoldAtLine(i);
|
start := TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).CollapsedLineForFoldAtLine(i);
|
||||||
|
@ -885,6 +887,8 @@ begin
|
||||||
if not itm.isCollapsed then
|
if not itm.isCollapsed then
|
||||||
continue;
|
continue;
|
||||||
{$if lcl_fullversion < 2020000}
|
{$if lcl_fullversion < 2020000}
|
||||||
|
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
|
||||||
|
{$WARNING Support will be removed after Lazarus 2.2.2 release}
|
||||||
fMemo.TextView.FoldAtLine(itm.lineIndex-1);
|
fMemo.TextView.FoldAtLine(itm.lineIndex-1);
|
||||||
{$else}
|
{$else}
|
||||||
TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).FoldAtLine(itm.lineIndex-1);
|
TSynEditFoldedView(fMemo.TextViewsManager.SynTextViewByClass[TSynEditFoldedView]).FoldAtLine(itm.lineIndex-1);
|
||||||
|
@ -1172,6 +1176,8 @@ begin
|
||||||
fModified := false;
|
fModified := false;
|
||||||
|
|
||||||
{$if lcl_fullversion < 2020000}
|
{$if lcl_fullversion < 2020000}
|
||||||
|
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
|
||||||
|
{$WARNING Support will be removed after Lazarus 2.2.2 release}
|
||||||
TextBuffer.AddNotifyHandler(senrUndoRedoAdded, @changeNotify);
|
TextBuffer.AddNotifyHandler(senrUndoRedoAdded, @changeNotify);
|
||||||
{$else}
|
{$else}
|
||||||
TextViewsManager.SynTextView[0].AddNotifyHandler(senrUndoRedoAdded, @changeNotify);
|
TextViewsManager.SynTextView[0].AddNotifyHandler(senrUndoRedoAdded, @changeNotify);
|
||||||
|
|
|
@ -95,6 +95,8 @@ begin
|
||||||
aFirstCustomColumnIdx := 0;
|
aFirstCustomColumnIdx := 0;
|
||||||
{$if lcl_fullversion < 2020000}
|
{$if lcl_fullversion < 2020000}
|
||||||
i := FoldView.TextIndex[aScreenLine];
|
i := FoldView.TextIndex[aScreenLine];
|
||||||
|
{$WARNING It is deprecated to use Lazarus 2.0.z to build dexed}
|
||||||
|
{$WARNING Support will be removed after Lazarus 2.2.2 release}
|
||||||
{$else}
|
{$else}
|
||||||
aScreenLine := aScreenLine + ToIdx(GutterArea.TextArea.TopLine);
|
aScreenLine := aScreenLine + ToIdx(GutterArea.TextArea.TopLine);
|
||||||
i := ViewedTextBuffer.DisplayView.ViewToTextIndexEx(aScreenLine, iRange);
|
i := ViewedTextBuffer.DisplayView.ViewToTextIndexEx(aScreenLine, iRange);
|
||||||
|
|
Loading…
Reference in New Issue