├── .gitignore ├── CompInstall.dpr ├── CompInstall.dproj ├── CompInstall.res ├── CompInstall_Icon.ico ├── LICENSE.md ├── README.md ├── UCmdExecBuffer.pas ├── UCommon.pas ├── UDefinitions.pas ├── UDelphiVersionCombo.pas ├── UFrm.dfm ├── UFrm.pas ├── UFrmOldFiles.dfm ├── UFrmOldFiles.pas ├── UGitHub.pas ├── UProcess.pas └── images └── app_preview.gif /.gitignore: -------------------------------------------------------------------------------- 1 | *.identcache 2 | *.local 3 | /Win32 4 | -------------------------------------------------------------------------------- /CompInstall.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/CompInstall.dpr -------------------------------------------------------------------------------- /CompInstall.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/CompInstall.dproj -------------------------------------------------------------------------------- /CompInstall.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/CompInstall.res -------------------------------------------------------------------------------- /CompInstall_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/CompInstall_Icon.ico -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/README.md -------------------------------------------------------------------------------- /UCmdExecBuffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UCmdExecBuffer.pas -------------------------------------------------------------------------------- /UCommon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UCommon.pas -------------------------------------------------------------------------------- /UDefinitions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UDefinitions.pas -------------------------------------------------------------------------------- /UDelphiVersionCombo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UDelphiVersionCombo.pas -------------------------------------------------------------------------------- /UFrm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UFrm.dfm -------------------------------------------------------------------------------- /UFrm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UFrm.pas -------------------------------------------------------------------------------- /UFrmOldFiles.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UFrmOldFiles.dfm -------------------------------------------------------------------------------- /UFrmOldFiles.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UFrmOldFiles.pas -------------------------------------------------------------------------------- /UGitHub.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UGitHub.pas -------------------------------------------------------------------------------- /UProcess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/UProcess.pas -------------------------------------------------------------------------------- /images/app_preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digao-dalpiaz/CompInstall/HEAD/images/app_preview.gif --------------------------------------------------------------------------------