├── .gitignore ├── GT-Sample-Strings.txt ├── LICENSE ├── ProofGenerator-py ├── ProofGenerator.py ├── proof │ └── Document fonts │ │ └── AdobeFnt22.lst ├── strings │ ├── GT-Sample-Strings.txt │ ├── cyrillic-basic.txt │ ├── cyrillic-kerning.txt │ ├── greek-basic.txt │ ├── greek-kerning.txt │ ├── latin-basic.txt │ ├── latin-kerning.txt │ └── sort-samplestrings.py └── template_proof.idml ├── ProofGenerator.app.zip ├── README.md └── data ├── PG-bw-small.gif ├── PG-bw.gif └── PG.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /GT-Sample-Strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/GT-Sample-Strings.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /ProofGenerator-py/ProofGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/ProofGenerator.py -------------------------------------------------------------------------------- /ProofGenerator-py/proof/Document fonts/AdobeFnt22.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/proof/Document fonts/AdobeFnt22.lst -------------------------------------------------------------------------------- /ProofGenerator-py/strings/GT-Sample-Strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/GT-Sample-Strings.txt -------------------------------------------------------------------------------- /ProofGenerator-py/strings/cyrillic-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/cyrillic-basic.txt -------------------------------------------------------------------------------- /ProofGenerator-py/strings/cyrillic-kerning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/cyrillic-kerning.txt -------------------------------------------------------------------------------- /ProofGenerator-py/strings/greek-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/greek-basic.txt -------------------------------------------------------------------------------- /ProofGenerator-py/strings/greek-kerning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/greek-kerning.txt -------------------------------------------------------------------------------- /ProofGenerator-py/strings/latin-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/latin-basic.txt -------------------------------------------------------------------------------- /ProofGenerator-py/strings/latin-kerning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/latin-kerning.txt -------------------------------------------------------------------------------- /ProofGenerator-py/strings/sort-samplestrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/strings/sort-samplestrings.py -------------------------------------------------------------------------------- /ProofGenerator-py/template_proof.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator-py/template_proof.idml -------------------------------------------------------------------------------- /ProofGenerator.app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/ProofGenerator.app.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/README.md -------------------------------------------------------------------------------- /data/PG-bw-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/data/PG-bw-small.gif -------------------------------------------------------------------------------- /data/PG-bw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/data/PG-bw.gif -------------------------------------------------------------------------------- /data/PG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grillitype/ProofGenerator/HEAD/data/PG.png --------------------------------------------------------------------------------