Skip to content

Commit 02632c4

Browse files
committed
Project: RESTDataWare
Changes: - Correção de versionamento de pacotes pro Lazarus - Correção de pacote de instalação Zeos - Correção de pacote de instalação ShellServices
1 parent 0ca1fb1 commit 02632c4

6 files changed

Lines changed: 16 additions & 17 deletions

File tree

CORE/Packages/Lazarus/Connectors/Indy/RestDatawareIndySockets.lpk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</CompilerOptions>
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"/>
34-
<Version Major="2"/>
34+
<Version Major="2" Release="3"/>
3535
<Files Count="84">
3636
<Item1>
3737
<Filename Value="RestDatawareIndySockets.lrs"/>
@@ -55,6 +55,7 @@
5555
<RequiredPkgs Count="5">
5656
<Item1>
5757
<PackageName Value="restdatawarecomponents"/>
58+
<MinVersion Major="2" Valid="True"/>
5859
</Item1>
5960
<Item2>
6061
<PackageName Value="indylaz"/>

CORE/Packages/Lazarus/Drivers/zeos/restdwdriverzeos.lpk

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<IncludeFiles Value="..\..\..\..;..\..\..\..\Includes"/>
1313
<Libraries Value="..\..\..\..\static\$(TargetCPU)-$(TargetOS)"/>
1414
<OtherUnitFiles Value="..\..\libs;..\..;..\..\libs\JSON;..\..\..\..\Source\Database_Drivers"/>
15-
<UnitOutputDirectory Value="..\..\..\..\compiledlaz"/>
15+
<UnitOutputDirectory Value="..\..\..\..\Source\compiledlaz"/>
1616
</SearchPaths>
1717
<CodeGeneration>
1818
<Optimizations>
@@ -23,8 +23,8 @@
2323
<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.
2424
"/>
2525
<License Value="GPL- 3.0"/>
26-
<Version Major="2"/>
27-
<Files Count="3">
26+
<Version Major="2" Release="3"/>
27+
<Files Count="2">
2828
<Item1>
2929
<Filename Value="restdwdriverzeos.lrs"/>
3030
<Type Value="LRS"/>
@@ -34,16 +34,12 @@
3434
<HasRegisterProc Value="True"/>
3535
<UnitName Value="uRESTDWDriverZEOS"/>
3636
</Item2>
37-
<Item3>
38-
<Filename Value="..\..\..\..\Source\Database_Drivers\uRESTDWDriverZEOSReg.pas"/>
39-
<HasRegisterProc Value="True"/>
40-
<UnitName Value="uRESTDWDriverZEOSReg"/>
41-
</Item3>
4237
</Files>
4338
<CompatibilityMode Value="True"/>
4439
<RequiredPkgs Count="4">
4540
<Item1>
4641
<PackageName Value="restdatawarecomponents"/>
42+
<MinVersion Major="2" Valid="True"/>
4743
</Item1>
4844
<Item2>
4945
<PackageName Value="LR_ZeosDB"/>

CORE/Packages/Lazarus/Drivers/zeos/restdwdriverzeos.pas

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
interface
99

1010
uses
11-
uRESTDWDriverZEOS, uRESTDWDriverZEOSReg, LazarusPackageIntf;
11+
uRESTDWDriverZEOS, LazarusPackageIntf;
1212

1313
implementation
1414

1515
procedure Register;
1616
begin
1717
RegisterUnit('uRESTDWDriverZEOS', @uRESTDWDriverZEOS.Register);
18-
RegisterUnit('uRESTDWDriverZEOSReg', @uRESTDWDriverZEOSReg.Register);
1918
end;
2019

2120
initialization

CORE/Packages/Lazarus/ShellTools/restdatawareshellservices.lpk

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,26 @@
1414
</SearchPaths>
1515
</CompilerOptions>
1616
<License Value="GPL - 3.0"/>
17-
<Version Major="2"/>
17+
<Version Major="2" Release="3"/>
1818
<Files>
1919
<Item>
2020
<Filename Value="RestDatawareShellservices.lrs"/>
2121
<Type Value="LRS"/>
2222
</Item>
2323
<Item>
2424
<Filename Value="..\..\..\Source\ShellTools\uRESTDWShellServicesLazarus.pas"/>
25-
<UnitName Value="uRESTDWShellServices"/>
25+
<UnitName Value="uRESTDWShellServicesLazarus"/>
2626
</Item>
2727
<Item>
2828
<Filename Value="..\..\..\Source\ShellTools\uRESTDWShellServicesRegLazarus.pas"/>
29-
<UnitName Value="uRESTDWShellServicesReg"/>
29+
<HasRegisterProc Value="True"/>
30+
<UnitName Value="uRESTDWShellServicesRegLazarus"/>
3031
</Item>
3132
</Files>
3233
<RequiredPkgs>
3334
<Item>
3435
<PackageName Value="restdatawarecomponents"/>
36+
<MinVersion Major="2" Valid="True"/>
3537
</Item>
3638
<Item>
3739
<PackageName Value="weblaz"/>

CORE/Packages/Lazarus/ShellTools/restdatawareshellservices.pas

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88
interface
99

1010
uses
11-
uRESTDWShellServicesLazarus, uRESTDWShellServicesRegLazarus,
12-
LazarusPackageIntf;
11+
uRESTDWShellServicesLazarus, uRESTDWShellServicesRegLazarus, LazarusPackageIntf;
1312

1413
implementation
1514

1615
procedure Register;
1716
begin
17+
RegisterUnit('uRESTDWShellServicesRegLazarus',
18+
@uRESTDWShellServicesRegLazarus.Register);
1819
end;
1920

2021
initialization

CORE/Packages/Lazarus/restdatawarecomponents.lpk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</CompilerOptions>
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"/>
34-
<Version Major="2"/>
34+
<Version Major="2" Release="3"/>
3535
<Files Count="82">
3636
<Item1>
3737
<Filename Value="restdatawarecomponents.lrs"/>

0 commit comments

Comments
 (0)