├── .gitignore ├── LICENSE ├── README.md ├── binSelector.py ├── clipTypes.py ├── config.json ├── config.py ├── icon.py ├── init.py ├── layout.py ├── pathHelpers.py ├── requirements.txt ├── resolve.py ├── resolveAdvancedImporter.py ├── resolveBinTree.py ├── resolveImporter.ico └── resolveImporter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/README.md -------------------------------------------------------------------------------- /binSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/binSelector.py -------------------------------------------------------------------------------- /clipTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/clipTypes.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/config.json -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/config.py -------------------------------------------------------------------------------- /icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/icon.py -------------------------------------------------------------------------------- /init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/init.py -------------------------------------------------------------------------------- /layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/layout.py -------------------------------------------------------------------------------- /pathHelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/pathHelpers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tk 2 | pyinstaller 3 | pillow -------------------------------------------------------------------------------- /resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/resolve.py -------------------------------------------------------------------------------- /resolveAdvancedImporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/resolveAdvancedImporter.py -------------------------------------------------------------------------------- /resolveBinTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/resolveBinTree.py -------------------------------------------------------------------------------- /resolveImporter.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/resolveImporter.ico -------------------------------------------------------------------------------- /resolveImporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/resolve-advanced-importer/HEAD/resolveImporter.py --------------------------------------------------------------------------------