├── MAKE_RELEASE.bat ├── Readme.md ├── clean_DCU.bat ├── doc_img ├── di_browsing_path.png ├── di_env.png ├── di_general.png ├── di_lib_path.png └── di_packages.png ├── images ├── Icons.axicp ├── Main.ico ├── VirusTotal.png ├── explorer.png └── text-preview.png └── src ├── DELI.ConOut.pas ├── DELI.FormMain.dfm ├── DELI.FormMain.pas ├── DELI.FormTextPreview.dfm ├── DELI.FormTextPreview.pas ├── DELI.PROCS.pas ├── DELI.Types.pas ├── DelphiInfo.dpr ├── DelphiInfo.dproj └── DelphiInfo.res /MAKE_RELEASE.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/MAKE_RELEASE.bat -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/Readme.md -------------------------------------------------------------------------------- /clean_DCU.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | del /s *.dcu 4 | -------------------------------------------------------------------------------- /doc_img/di_browsing_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/doc_img/di_browsing_path.png -------------------------------------------------------------------------------- /doc_img/di_env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/doc_img/di_env.png -------------------------------------------------------------------------------- /doc_img/di_general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/doc_img/di_general.png -------------------------------------------------------------------------------- /doc_img/di_lib_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/doc_img/di_lib_path.png -------------------------------------------------------------------------------- /doc_img/di_packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/doc_img/di_packages.png -------------------------------------------------------------------------------- /images/Icons.axicp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/images/Icons.axicp -------------------------------------------------------------------------------- /images/Main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/images/Main.ico -------------------------------------------------------------------------------- /images/VirusTotal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/images/VirusTotal.png -------------------------------------------------------------------------------- /images/explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/images/explorer.png -------------------------------------------------------------------------------- /images/text-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/images/text-preview.png -------------------------------------------------------------------------------- /src/DELI.ConOut.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DELI.ConOut.pas -------------------------------------------------------------------------------- /src/DELI.FormMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DELI.FormMain.dfm -------------------------------------------------------------------------------- /src/DELI.FormMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DELI.FormMain.pas -------------------------------------------------------------------------------- /src/DELI.FormTextPreview.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DELI.FormTextPreview.dfm -------------------------------------------------------------------------------- /src/DELI.FormTextPreview.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DELI.FormTextPreview.pas -------------------------------------------------------------------------------- /src/DELI.PROCS.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DELI.PROCS.pas -------------------------------------------------------------------------------- /src/DELI.Types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DELI.Types.pas -------------------------------------------------------------------------------- /src/DelphiInfo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DelphiInfo.dpr -------------------------------------------------------------------------------- /src/DelphiInfo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DelphiInfo.dproj -------------------------------------------------------------------------------- /src/DelphiInfo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdp/DelphiInfo/HEAD/src/DelphiInfo.res --------------------------------------------------------------------------------