-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8532fc6
commit 424f74e
Showing
10 changed files
with
1,160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## Features can be added in Future Releases: | ||
|
||
- Not delete folders in TEMP folder (it can be good for archiving), | ||
- Change interval of controlling input files, | ||
- Choose output will to be zipped or not be zipped, | ||
- More than one instance, | ||
- Instance(s) will not be work as a child process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CONFIG> | ||
<ProjectOptions> | ||
<Version Value="10"/> | ||
<PathDelim Value="\"/> | ||
<General> | ||
<SessionStorage Value="InProjectDir"/> | ||
<MainUnit Value="0"/> | ||
<Title Value="LRG Cloud Queue Manager"/> | ||
<Scaled Value="True"/> | ||
<ResourceType Value="res"/> | ||
<UseXPManifest Value="True"/> | ||
<Icon Value="0"/> | ||
</General> | ||
<BuildModes Count="1"> | ||
<Item1 Name="Default" Default="True"/> | ||
</BuildModes> | ||
<PublishOptions> | ||
<Version Value="2"/> | ||
</PublishOptions> | ||
<RunParams> | ||
<local> | ||
<FormatVersion Value="1"/> | ||
</local> | ||
</RunParams> | ||
<RequiredPackages Count="1"> | ||
<Item1> | ||
<PackageName Value="LCL"/> | ||
</Item1> | ||
</RequiredPackages> | ||
<Units Count="2"> | ||
<Unit0> | ||
<Filename Value="fqm.lpr"/> | ||
<IsPartOfProject Value="True"/> | ||
</Unit0> | ||
<Unit1> | ||
<Filename Value="unit1.pas"/> | ||
<IsPartOfProject Value="True"/> | ||
<ComponentName Value="Form1"/> | ||
<HasResources Value="True"/> | ||
<ResourceBaseClass Value="Form"/> | ||
<UnitName Value="Unit1"/> | ||
</Unit1> | ||
</Units> | ||
</ProjectOptions> | ||
<CompilerOptions> | ||
<Version Value="11"/> | ||
<PathDelim Value="\"/> | ||
<Target> | ||
<Filename Value="fqm"/> | ||
</Target> | ||
<SearchPaths> | ||
<IncludeFiles Value="$(ProjOutDir)"/> | ||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> | ||
</SearchPaths> | ||
<CodeGeneration> | ||
<SmallerCode Value="True"/> | ||
</CodeGeneration> | ||
<Linking> | ||
<Debugging> | ||
<GenerateDebugInfo Value="False"/> | ||
</Debugging> | ||
<Options> | ||
<Win32> | ||
<GraphicApplication Value="True"/> | ||
</Win32> | ||
</Options> | ||
</Linking> | ||
</CompilerOptions> | ||
<Debugging> | ||
<Exceptions Count="3"> | ||
<Item1> | ||
<Name Value="EAbort"/> | ||
</Item1> | ||
<Item2> | ||
<Name Value="ECodetoolError"/> | ||
</Item2> | ||
<Item3> | ||
<Name Value="EFOpenError"/> | ||
</Item3> | ||
</Exceptions> | ||
</Debugging> | ||
</CONFIG> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
program fqm; | ||
|
||
{$mode objfpc}{$H+} | ||
|
||
uses | ||
{$IFDEF UNIX}{$IFDEF UseCThreads} | ||
cthreads, | ||
{$ENDIF}{$ENDIF} | ||
Interfaces, // this includes the LCL widgetset | ||
Forms, Unit1 | ||
{ you can add units after this }; | ||
|
||
{$R *.res} | ||
|
||
begin | ||
Application.Scaled:=True; | ||
Application.Title:='LRG Cloud Queue Manager'; | ||
RequireDerivedFormResource:=True; | ||
Application.Initialize; | ||
Application.CreateForm(TForm1, Form1); | ||
Application.Run; | ||
end. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CONFIG> | ||
<ProjectSession> | ||
<PathDelim Value="\"/> | ||
<Version Value="10"/> | ||
<BuildModes Active="Default"/> | ||
<Units Count="3"> | ||
<Unit0> | ||
<Filename Value="fqm.lpr"/> | ||
<IsPartOfProject Value="True"/> | ||
<CursorPos X="11" Y="10"/> | ||
<UsageCount Value="33"/> | ||
<Loaded Value="True"/> | ||
</Unit0> | ||
<Unit1> | ||
<Filename Value="unit1.pas"/> | ||
<IsPartOfProject Value="True"/> | ||
<ComponentName Value="Form1"/> | ||
<HasResources Value="True"/> | ||
<ResourceBaseClass Value="Form"/> | ||
<UnitName Value="Unit1"/> | ||
<IsVisibleTab Value="True"/> | ||
<EditorIndex Value="1"/> | ||
<TopLine Value="191"/> | ||
<CursorPos X="28" Y="204"/> | ||
<UsageCount Value="30"/> | ||
<Loaded Value="True"/> | ||
<LoadedDesigner Value="True"/> | ||
</Unit1> | ||
<Unit2> | ||
<Filename Value="C:\lazarus\fpc\3.0.4\source\packages\fcl-process\src\process.pp"/> | ||
<EditorIndex Value="2"/> | ||
<TopLine Value="21"/> | ||
<CursorPos X="74" Y="37"/> | ||
<UsageCount Value="11"/> | ||
<Loaded Value="True"/> | ||
</Unit2> | ||
</Units> | ||
<JumpHistory Count="30" HistoryIndex="29"> | ||
<Position1> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="157" Column="20" TopLine="140"/> | ||
</Position1> | ||
<Position2> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="161" Column="36" TopLine="140"/> | ||
</Position2> | ||
<Position3> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="154" Column="16" TopLine="139"/> | ||
</Position3> | ||
<Position4> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="153" Column="18" TopLine="137"/> | ||
</Position4> | ||
<Position5> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="9" Column="71"/> | ||
</Position5> | ||
<Position6> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="18" Column="27"/> | ||
</Position6> | ||
<Position7> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="9" Column="66"/> | ||
</Position7> | ||
<Position8> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="156" Column="15" TopLine="139"/> | ||
</Position8> | ||
<Position9> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="159" Column="19" TopLine="142"/> | ||
</Position9> | ||
<Position10> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="181" Column="29" TopLine="149"/> | ||
</Position10> | ||
<Position11> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="179" Column="48" TopLine="162"/> | ||
</Position11> | ||
<Position12> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="178" Column="55" TopLine="158"/> | ||
</Position12> | ||
<Position13> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="181" Column="87" TopLine="163"/> | ||
</Position13> | ||
<Position14> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="185" Column="45" TopLine="152"/> | ||
</Position14> | ||
<Position15> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="166" Column="50" TopLine="149"/> | ||
</Position15> | ||
<Position16> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="185" Column="97" TopLine="169"/> | ||
</Position16> | ||
<Position17> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="161" Column="18" TopLine="146"/> | ||
</Position17> | ||
<Position18> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="211" Column="44" TopLine="188"/> | ||
</Position18> | ||
<Position19> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="213" Column="7" TopLine="191"/> | ||
</Position19> | ||
<Position20> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="157" Column="3" TopLine="139"/> | ||
</Position20> | ||
<Position21> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="230" Column="21" TopLine="200"/> | ||
</Position21> | ||
<Position22> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="210" Column="82" TopLine="199"/> | ||
</Position22> | ||
<Position23> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="20" Column="29"/> | ||
</Position23> | ||
<Position24> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="235" Column="34" TopLine="223"/> | ||
</Position24> | ||
<Position25> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="249" Column="20" TopLine="229"/> | ||
</Position25> | ||
<Position26> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="260" Column="3" TopLine="230"/> | ||
</Position26> | ||
<Position27> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="259" Column="3" TopLine="229"/> | ||
</Position27> | ||
<Position28> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="236" Column="51" TopLine="229"/> | ||
</Position28> | ||
<Position29> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="172" TopLine="156"/> | ||
</Position29> | ||
<Position30> | ||
<Filename Value="unit1.pas"/> | ||
<Caret Line="171" TopLine="155"/> | ||
</Position30> | ||
</JumpHistory> | ||
</ProjectSession> | ||
</CONFIG> |
Oops, something went wrong.