Skip to content

Commit af5f267

Browse files
committed
- Correção de instalação no Lazarus.
1 parent 9777879 commit af5f267

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CORE/Packages/Lazarus/restdatawarecomponents.lpk

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<Description Value="The proposal was fulfilled. REST DW was created to facilitate the creation of CRUDs in the same model that we created applications for Client / Server Database. Today, being able to write data to a bank via WebService is too complex for simple operations, making scheduling of simple screens time-consuming. With REST Dataware, you no longer have to worry about creating SQL Insertion, Deletion, Read, and Execution methods via Webservice; Simply add a RESTDataBase connection component and add a RESTClientSQL component that will already have your SQL solution fully functional as you did back in the day and with all the power of modern REST / JSON technology with data compression and everything the language can offer. Have fun."/>
3333
<License Value="GPL- 3.0"/>
3434
<Version Major="2" Release="6"/>
35-
<Files Count="82">
35+
<Files Count="83">
3636
<Item1>
3737
<Filename Value="restdatawarecomponents.lrs"/>
3838
<Type Value="LRS"/>
@@ -361,6 +361,11 @@
361361
<Filename Value="..\..\Source\libs\uRESTDWMimeTypes.pas"/>
362362
<UnitName Value="uRESTDWMimeTypes"/>
363363
</Item82>
364+
<Item83>
365+
<Filename Value="..\..\Source\Basic\uRESTDWDesignReg.pas"/>
366+
<HasRegisterProc Value="True"/>
367+
<UnitName Value="uRESTDWDesignReg"/>
368+
</Item83>
364369
</Files>
365370
<CompatibilityMode Value="True"/>
366371
<RequiredPkgs Count="3">

CORE/Packages/Lazarus/restdatawarecomponents.pas

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@ interface
2727
uRESTDWJSON, uRESTDWJSONInterface, uRESTDWSerialize, uRESTDWDatamodule,
2828
uRESTDWJSONViewer, uRESTDWDataset, uRESTDWExprParser,
2929
uRESTDWFieldSourceEditor, uRESTDWSqlEditor, uRESTDWUpdSqlEditor,
30-
utemplateproglaz, uRESTDWBufferBase, uRESTDWMimeTypes, LazarusPackageIntf;
30+
utemplateproglaz, uRESTDWBufferBase, uRESTDWMimeTypes, uRESTDWDesignReg,
31+
LazarusPackageIntf;
3132

3233
implementation
3334

3435
procedure Register;
3536
begin
37+
RegisterUnit('uRESTDWDesignReg', @uRESTDWDesignReg.Register);
3638
end;
3739

3840
initialization

0 commit comments

Comments
 (0)