Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull Request - Adiconar altrerações #2

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,17 @@ __recovery/

# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
*.stat

# Boss and System folders
Project/modules/
Source/FMX/Temp/
Source/VCL/Temp/
Samples/FMX/modules/
Samples/FMX/Temp/
Samples/VCL/Classic/modules/
Samples/VCL/Classic/Temp/
Samples/VCL/Standalone/modules/
Samples/VCL/Standalone/Temp/
Samples/VCL/Classic/Application
Samples/VCL/Standalone/Application
Samples/FMX/Application
60 changes: 60 additions & 0 deletions Project/TurboUpdate.Group.groupproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{7341E00B-6427-4EFA-A56B-77CA456D99A4}</ProjectGuid>
</PropertyGroup>
<ItemGroup>
<Projects Include="TurboUpdateModel.dproj">
<Dependencies/>
</Projects>
<Projects Include="..\Source\FMX\TurboUpdateFMX.dproj">
<Dependencies/>
</Projects>
<Projects Include="TurboUpdateCore.dproj">
<Dependencies/>
</Projects>
</ItemGroup>
<ProjectExtensions>
<Borland.Personality>Default.Personality.12</Borland.Personality>
<Borland.ProjectType/>
<BorlandProject>
<Default.Personality/>
</BorlandProject>
</ProjectExtensions>
<Target Name="TurboUpdateModel">
<MSBuild Projects="TurboUpdateModel.dproj"/>
</Target>
<Target Name="TurboUpdateModel:Clean">
<MSBuild Projects="TurboUpdateModel.dproj" Targets="Clean"/>
</Target>
<Target Name="TurboUpdateModel:Make">
<MSBuild Projects="TurboUpdateModel.dproj" Targets="Make"/>
</Target>
<Target Name="TurboUpdateFMX">
<MSBuild Projects="..\Source\FMX\TurboUpdateFMX.dproj"/>
</Target>
<Target Name="TurboUpdateFMX:Clean">
<MSBuild Projects="..\Source\FMX\TurboUpdateFMX.dproj" Targets="Clean"/>
</Target>
<Target Name="TurboUpdateFMX:Make">
<MSBuild Projects="..\Source\FMX\TurboUpdateFMX.dproj" Targets="Make"/>
</Target>
<Target Name="TurboUpdateCore">
<MSBuild Projects="TurboUpdateCore.dproj"/>
</Target>
<Target Name="TurboUpdateCore:Clean">
<MSBuild Projects="TurboUpdateCore.dproj" Targets="Clean"/>
</Target>
<Target Name="TurboUpdateCore:Make">
<MSBuild Projects="TurboUpdateCore.dproj" Targets="Make"/>
</Target>
<Target Name="Build">
<CallTarget Targets="TurboUpdateModel;TurboUpdateFMX;TurboUpdateCore"/>
</Target>
<Target Name="Clean">
<CallTarget Targets="TurboUpdateModel:Clean;TurboUpdateFMX:Clean;TurboUpdateCore:Clean"/>
</Target>
<Target Name="Make">
<CallTarget Targets="TurboUpdateModel:Make;TurboUpdateFMX:Make;TurboUpdateCore:Make"/>
</Target>
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
</Project>
84 changes: 40 additions & 44 deletions TurboUpdate.dpk → Project/TurboUpdateCore.dpk
Original file line number Diff line number Diff line change
@@ -1,44 +1,40 @@
package TurboUpdate;

{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$RUNONLY}
{$IMPLICITBUILD ON}

requires
rtl;

contains
TurboUpdate.Consts in 'Source\TurboUpdate.Consts.pas',
TurboUpdate.Download in 'Source\TurboUpdate.Download.pas',
TurboUpdate.Internet in 'Source\TurboUpdate.Internet.pas',
TurboUpdate.Model in 'Source\TurboUpdate.Model.pas',
TurboUpdate.Types in 'Source\TurboUpdate.Types.pas',
TurboUpdate.Check in 'Source\TurboUpdate.Check.pas',
TurboUpdate.Utils in 'Source\TurboUpdate.Utils.pas';

end.

package TurboUpdateCore;

{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS ON}
{$RANGECHECKS ON}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$RUNONLY}
{$IMPLICITBUILD ON}

requires
rtl,
TurboUpdateModel,
TurboUpdateFMX;

contains
TurboUpdate in '..\Source\TurboUpdate.pas',
TurboUpdate.Interfaces in '..\Source\TurboUpdate.Interfaces.pas';

end.
1,085 changes: 1,085 additions & 0 deletions Project/TurboUpdateCore.dproj

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions Project/TurboUpdateCore.dsv
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[ClosedView_RDpcUmVjdXJzb3MgR2l0SHViXEhEVHVyYm9VcGRhdGVcU291cmNlXFR1cmJvVXBkYXRlLnBhcw==]
Module=D:\Recursos GitHub\HDTurboUpdate\Source\TurboUpdate.pas
CursorX=26
CursorY=142
TopLine=141
LeftCol=1
Elisions=
Bookmarks=
EditViewName=D:\Recursos GitHub\HDTurboUpdate\Source\TurboUpdate.pas
[ClosedView_RDpcUmVjdXJzb3MgR2l0SHViXEhEVHVyYm9VcGRhdGVcUHJvamVjdFxUdXJib1VwZGF0ZUNvcmUu
ZHBr]
Module=D:\Recursos GitHub\HDTurboUpdate\Project\TurboUpdateCore.dpk
CursorX=14
CursorY=34
TopLine=13
LeftCol=1
Elisions=
Bookmarks=
EditViewName=D:\Recursos GitHub\HDTurboUpdate\Project\TurboUpdateCore.dpk
[ClosedView_RDpcUmVjdXJzb3MgR2l0SHViXEhEVHVyYm9VcGRhdGVcUHJvamVjdFxUdXJib1VwZGF0ZUNvcmUu
ZHBr]
Module=D:\Recursos GitHub\HDTurboUpdate\Project\TurboUpdateCore.dpk
CursorX=14
CursorY=34
TopLine=13
LeftCol=1
Elisions=
Bookmarks=
EditViewName=D:\Recursos GitHub\HDTurboUpdate\Project\TurboUpdateCore.dpk

Binary file added Project/TurboUpdateCore.res
Binary file not shown.
47 changes: 47 additions & 0 deletions Project/TurboUpdateModel.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
package TurboUpdateModel;
{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$RUNONLY}
{$IMPLICITBUILD ON}

requires
rtl,
HDMessageDlg;

contains
TurboUpdate.Model.Consts in '..\Source\TurboUpdate.Model.Consts.pas',
TurboUpdate.Model.Internet in '..\Source\TurboUpdate.Model.Internet.pas',
TurboUpdate.Model in '..\Source\TurboUpdate.Model.pas',
TurboUpdate.Model.Types in '..\Source\TurboUpdate.Model.Types.pas',
TurboUpdate.Model.Check in '..\Source\TurboUpdate.Model.Check.pas',
TurboUpdate.Model.Utils in '..\Source\TurboUpdate.Model.Utils.pas',
TurboUpdate.Model.LanguagePTbr in '..\Source\Language\TurboUpdate.Model.LanguagePTbr.pas',
TurboUpdate.Model.LanguageUS in '..\Source\Language\TurboUpdate.Model.LanguageUS.pas',
TurboUpdate.Model.Update.Thread in '..\Source\TurboUpdate.Model.Update.Thread.pas',
TurboUpdate.Model.Interfaces in '..\Source\TurboUpdate.Model.Interfaces.pas',
TurboUpdate.Model.Language.Interfaces in '..\Source\Language\TurboUpdate.Model.Language.Interfaces.pas';

end.
Loading