├── .gitattributes ├── .gitignore ├── LICENSE ├── ProperTree.bat ├── ProperTree.command ├── ProperTree.py ├── ProperTreeQuiet.bat ├── README.md └── Scripts ├── AssociatePlistFiles.bat ├── Remove_AssociatePlistFiles.bat ├── __init__.py ├── buildapp-select.command ├── buildapp-select.py ├── config_tex_info.py ├── downloader.py ├── menu.plist ├── plist.py ├── plistwindow.py ├── shortcut.icns ├── shortcut.ico ├── snapshot.plist ├── update_check.py ├── utils.py └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/LICENSE -------------------------------------------------------------------------------- /ProperTree.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/ProperTree.bat -------------------------------------------------------------------------------- /ProperTree.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/ProperTree.command -------------------------------------------------------------------------------- /ProperTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/ProperTree.py -------------------------------------------------------------------------------- /ProperTreeQuiet.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/ProperTreeQuiet.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/AssociatePlistFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/AssociatePlistFiles.bat -------------------------------------------------------------------------------- /Scripts/Remove_AssociatePlistFiles.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/Remove_AssociatePlistFiles.bat -------------------------------------------------------------------------------- /Scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/__init__.py -------------------------------------------------------------------------------- /Scripts/buildapp-select.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/buildapp-select.command -------------------------------------------------------------------------------- /Scripts/buildapp-select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/buildapp-select.py -------------------------------------------------------------------------------- /Scripts/config_tex_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/config_tex_info.py -------------------------------------------------------------------------------- /Scripts/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/downloader.py -------------------------------------------------------------------------------- /Scripts/menu.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/menu.plist -------------------------------------------------------------------------------- /Scripts/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/plist.py -------------------------------------------------------------------------------- /Scripts/plistwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/plistwindow.py -------------------------------------------------------------------------------- /Scripts/shortcut.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/shortcut.icns -------------------------------------------------------------------------------- /Scripts/shortcut.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/shortcut.ico -------------------------------------------------------------------------------- /Scripts/snapshot.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/snapshot.plist -------------------------------------------------------------------------------- /Scripts/update_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/update_check.py -------------------------------------------------------------------------------- /Scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/utils.py -------------------------------------------------------------------------------- /Scripts/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/ProperTree/HEAD/Scripts/version.json --------------------------------------------------------------------------------