├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── res │ ├── cute_kitten.jpg │ ├── jetzip.ico │ └── jetzip.png ├── examples └── testbed │ ├── Testbed.dpr │ ├── Testbed.dproj │ ├── Testbed.res │ ├── Testbed_Icon.ico │ └── UTestbed.pas ├── media ├── delphi.png └── jetzip.png └── src ├── JetZip - Zip It Fast Zip It Easy!.groupproj ├── JetZip.o └── JetZip.pas /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/README.md -------------------------------------------------------------------------------- /bin/res/cute_kitten.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/bin/res/cute_kitten.jpg -------------------------------------------------------------------------------- /bin/res/jetzip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/bin/res/jetzip.ico -------------------------------------------------------------------------------- /bin/res/jetzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/bin/res/jetzip.png -------------------------------------------------------------------------------- /examples/testbed/Testbed.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/examples/testbed/Testbed.dpr -------------------------------------------------------------------------------- /examples/testbed/Testbed.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/examples/testbed/Testbed.dproj -------------------------------------------------------------------------------- /examples/testbed/Testbed.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/examples/testbed/Testbed.res -------------------------------------------------------------------------------- /examples/testbed/Testbed_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/examples/testbed/Testbed_Icon.ico -------------------------------------------------------------------------------- /examples/testbed/UTestbed.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/examples/testbed/UTestbed.pas -------------------------------------------------------------------------------- /media/delphi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/media/delphi.png -------------------------------------------------------------------------------- /media/jetzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/media/jetzip.png -------------------------------------------------------------------------------- /src/JetZip - Zip It Fast Zip It Easy!.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/src/JetZip - Zip It Fast Zip It Easy!.groupproj -------------------------------------------------------------------------------- /src/JetZip.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/src/JetZip.o -------------------------------------------------------------------------------- /src/JetZip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinyBigGAMES/JetZip/HEAD/src/JetZip.pas --------------------------------------------------------------------------------