-
Notifications
You must be signed in to change notification settings - Fork 2
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
804cc2a
commit 107c49c
Showing
23 changed files
with
21,802 additions
and
5 deletions.
There are no files selected for viewing
Binary file not shown.
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,92 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CONFIG> | ||
<ProjectOptions> | ||
<Version Value="11"/> | ||
<PathDelim Value="\"/> | ||
<General> | ||
<SessionStorage Value="InProjectDir"/> | ||
<MainUnit Value="0"/> | ||
<Title Value="AULWindows"/> | ||
<Scaled Value="True"/> | ||
<ResourceType Value="res"/> | ||
<UseXPManifest Value="True"/> | ||
<XPManifest> | ||
<DpiAware Value="True"/> | ||
<ExecutionLevel Value="requireAdministrator"/> | ||
<TextName Value="SBS.AppDesktop.AULWindows"/> | ||
<TextDesc Value="Custom User Library Toolkit"/> | ||
</XPManifest> | ||
<Icon Value="0"/> | ||
</General> | ||
<VersionInfo> | ||
<UseVersionInfo Value="True"/> | ||
<AutoIncrementBuild Value="True"/> | ||
<MajorVersionNr Value="1"/> | ||
<MinorVersionNr Value="20"/> | ||
<BuildNr Value="48"/> | ||
<Attributes pvaPreRelease="True"/> | ||
<StringTable Comments="Custom User Library Toolkit" CompanyName="SBS Komputer" FileDescription="Custom User Library Toolkit" InternalName="AULWindows" LegalCopyright="Copyright 2020 - Stephanus Bagus Saputra" OriginalFilename="AULWindows" ProductName="AULWindows" ProductVersion="1.20"/> | ||
</VersionInfo> | ||
<BuildModes Count="1"> | ||
<Item1 Name="Default" Default="True"/> | ||
</BuildModes> | ||
<PublishOptions> | ||
<Version Value="2"/> | ||
<UseFileFilters Value="True"/> | ||
</PublishOptions> | ||
<RunParams> | ||
<FormatVersion Value="2"/> | ||
<Modes Count="0"/> | ||
</RunParams> | ||
<RequiredPackages Count="1"> | ||
<Item1> | ||
<PackageName Value="LCL"/> | ||
</Item1> | ||
</RequiredPackages> | ||
<Units Count="2"> | ||
<Unit0> | ||
<Filename Value="AULWindows.lpr"/> | ||
<IsPartOfProject Value="True"/> | ||
</Unit0> | ||
<Unit1> | ||
<Filename Value="mainformunit.pas"/> | ||
<IsPartOfProject Value="True"/> | ||
<ComponentName Value="MainForm"/> | ||
<HasResources Value="True"/> | ||
<ResourceBaseClass Value="Form"/> | ||
<UnitName Value="MainFormUnit"/> | ||
</Unit1> | ||
</Units> | ||
</ProjectOptions> | ||
<CompilerOptions> | ||
<Version Value="11"/> | ||
<PathDelim Value="\"/> | ||
<Target> | ||
<Filename Value="AULWindows2"/> | ||
</Target> | ||
<SearchPaths> | ||
<IncludeFiles Value="$(ProjOutDir)"/> | ||
<UnitOutputDirectory Value="lib\$(TargetCPU)-$(TargetOS)"/> | ||
</SearchPaths> | ||
<Linking> | ||
<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,22 @@ | ||
program AULWindows; | ||
|
||
{$mode objfpc}{$H+} | ||
|
||
uses | ||
{$IFDEF UNIX}{$IFDEF UseCThreads} | ||
cthreads, | ||
{$ENDIF}{$ENDIF} | ||
Interfaces, // this includes the LCL widgetset | ||
Forms, MainFormUnit | ||
{ you can add units after this }; | ||
|
||
{$R *.res} | ||
|
||
begin | ||
RequireDerivedFormResource:=True; | ||
Application.Scaled:=True; | ||
Application.Initialize; | ||
Application.CreateForm(TMainForm, MainForm); | ||
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,159 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<CONFIG> | ||
<ProjectSession> | ||
<PathDelim Value="\"/> | ||
<Version Value="11"/> | ||
<BuildModes Active="Default"/> | ||
<Units Count="2"> | ||
<Unit0> | ||
<Filename Value="AULWindows.lpr"/> | ||
<IsPartOfProject Value="True"/> | ||
<EditorIndex Value="1"/> | ||
<TopLine Value="6"/> | ||
<CursorPos Y="21"/> | ||
<UsageCount Value="66"/> | ||
<Loaded Value="True"/> | ||
</Unit0> | ||
<Unit1> | ||
<Filename Value="mainformunit.pas"/> | ||
<IsPartOfProject Value="True"/> | ||
<ComponentName Value="MainForm"/> | ||
<HasResources Value="True"/> | ||
<ResourceBaseClass Value="Form"/> | ||
<UnitName Value="MainFormUnit"/> | ||
<IsVisibleTab Value="True"/> | ||
<TopLine Value="96"/> | ||
<CursorPos X="34" Y="109"/> | ||
<UsageCount Value="66"/> | ||
<Loaded Value="True"/> | ||
<LoadedDesigner Value="True"/> | ||
</Unit1> | ||
</Units> | ||
<JumpHistory Count="30" HistoryIndex="29"> | ||
<Position1> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="505" Column="5" TopLine="493"/> | ||
</Position1> | ||
<Position2> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="495" Column="5" TopLine="485"/> | ||
</Position2> | ||
<Position3> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="63" TopLine="55"/> | ||
</Position3> | ||
<Position4> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="451" Column="122" TopLine="441"/> | ||
</Position4> | ||
<Position5> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="493" Column="43" TopLine="485"/> | ||
</Position5> | ||
<Position6> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="488" Column="3" TopLine="480"/> | ||
</Position6> | ||
<Position7> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="494" Column="17" TopLine="481"/> | ||
</Position7> | ||
<Position8> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="501" Column="5" TopLine="491"/> | ||
</Position8> | ||
<Position9> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="497" Column="44" TopLine="491"/> | ||
</Position9> | ||
<Position10> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="65" TopLine="57"/> | ||
</Position10> | ||
<Position11> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="298" Column="10" TopLine="290"/> | ||
</Position11> | ||
<Position12> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="150" Column="55" TopLine="143"/> | ||
</Position12> | ||
<Position13> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="330" Column="11" TopLine="322"/> | ||
</Position13> | ||
<Position14> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="495" Column="28" TopLine="492"/> | ||
</Position14> | ||
<Position15> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="484" Column="5" TopLine="481"/> | ||
</Position15> | ||
<Position16> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="483" Column="5" TopLine="480"/> | ||
</Position16> | ||
<Position17> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="484" Column="5" TopLine="481"/> | ||
</Position17> | ||
<Position18> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="483" Column="5" TopLine="480"/> | ||
</Position18> | ||
<Position19> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="485" Column="5" TopLine="482"/> | ||
</Position19> | ||
<Position20> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="484" Column="5" TopLine="481"/> | ||
</Position20> | ||
<Position21> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="483" Column="5" TopLine="480"/> | ||
</Position21> | ||
<Position22> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="482" Column="5" TopLine="479"/> | ||
</Position22> | ||
<Position23> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="481" Column="5" TopLine="478"/> | ||
</Position23> | ||
<Position24> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="482" Column="5" TopLine="479"/> | ||
</Position24> | ||
<Position25> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="483" Column="5" TopLine="480"/> | ||
</Position25> | ||
<Position26> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="484" Column="5" TopLine="481"/> | ||
</Position26> | ||
<Position27> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="480" Column="16" TopLine="474"/> | ||
</Position27> | ||
<Position28> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="111" Column="20" TopLine="104"/> | ||
</Position28> | ||
<Position29> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="515" Column="48" TopLine="509"/> | ||
</Position29> | ||
<Position30> | ||
<Filename Value="mainformunit.pas"/> | ||
<Caret Line="62" Column="54" TopLine="57"/> | ||
</Position30> | ||
</JumpHistory> | ||
<RunParams> | ||
<FormatVersion Value="2"/> | ||
<Modes Count="0" ActiveMode=""/> | ||
</RunParams> | ||
</ProjectSession> | ||
</CONFIG> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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
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 |
---|---|---|
@@ -1,2 +1,17 @@ | ||
# PascalAULWindows | ||
AULWindows | ||
-------------------------------------------- | ||
|
||
author: Stephanus Bagus Saputra; email: stephanusdai@icloud.com; visit: http://stephanusdai.web.id | ||
|
||
AULWindows is Tool Software for Custom User Library Windows | ||
|
||
|
||
LOG VERSION | ||
-------------------------------------------- | ||
|
||
Version 1.20 | ||
* Published | ||
|
||
Version 2.20 | ||
* Added feature for type display folder. | ||
* Added feature for clear log history. |
Oops, something went wrong.