├── .gitignore ├── LICENSE ├── README.md ├── kobopatchfan ├── checkerClass.py ├── configSettingsClass.py ├── controllerClass.py ├── downloadAllClass.py ├── downloadMenu.py ├── downloadThreadClass.py ├── editorClass.py ├── editorWindow.py ├── extractThreadClass.py ├── genWindow.py ├── generatorClass.py ├── kpf.ico ├── loadDataThreadClass.py ├── main.py ├── mainWindowStuff.py ├── processThreadClass.py ├── savedPatchesClass.py ├── savedPatchesWindow.py ├── specificationsPickerClass.py ├── specificationsWindow.py ├── statusMenu.py ├── threadManagerClass.py ├── updateDbClass.py ├── updateDbWindow.py ├── verifyClass.py ├── verifyWindow.py ├── versionPickerClass.py ├── versionPickerWindow.py ├── workingDir.py └── workingDirClass.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/README.md -------------------------------------------------------------------------------- /kobopatchfan/checkerClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/checkerClass.py -------------------------------------------------------------------------------- /kobopatchfan/configSettingsClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/configSettingsClass.py -------------------------------------------------------------------------------- /kobopatchfan/controllerClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/controllerClass.py -------------------------------------------------------------------------------- /kobopatchfan/downloadAllClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/downloadAllClass.py -------------------------------------------------------------------------------- /kobopatchfan/downloadMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/downloadMenu.py -------------------------------------------------------------------------------- /kobopatchfan/downloadThreadClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/downloadThreadClass.py -------------------------------------------------------------------------------- /kobopatchfan/editorClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/editorClass.py -------------------------------------------------------------------------------- /kobopatchfan/editorWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/editorWindow.py -------------------------------------------------------------------------------- /kobopatchfan/extractThreadClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/extractThreadClass.py -------------------------------------------------------------------------------- /kobopatchfan/genWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/genWindow.py -------------------------------------------------------------------------------- /kobopatchfan/generatorClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/generatorClass.py -------------------------------------------------------------------------------- /kobopatchfan/kpf.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/kpf.ico -------------------------------------------------------------------------------- /kobopatchfan/loadDataThreadClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/loadDataThreadClass.py -------------------------------------------------------------------------------- /kobopatchfan/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/main.py -------------------------------------------------------------------------------- /kobopatchfan/mainWindowStuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/mainWindowStuff.py -------------------------------------------------------------------------------- /kobopatchfan/processThreadClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/processThreadClass.py -------------------------------------------------------------------------------- /kobopatchfan/savedPatchesClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/savedPatchesClass.py -------------------------------------------------------------------------------- /kobopatchfan/savedPatchesWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/savedPatchesWindow.py -------------------------------------------------------------------------------- /kobopatchfan/specificationsPickerClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/specificationsPickerClass.py -------------------------------------------------------------------------------- /kobopatchfan/specificationsWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/specificationsWindow.py -------------------------------------------------------------------------------- /kobopatchfan/statusMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/statusMenu.py -------------------------------------------------------------------------------- /kobopatchfan/threadManagerClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/threadManagerClass.py -------------------------------------------------------------------------------- /kobopatchfan/updateDbClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/updateDbClass.py -------------------------------------------------------------------------------- /kobopatchfan/updateDbWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/updateDbWindow.py -------------------------------------------------------------------------------- /kobopatchfan/verifyClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/verifyClass.py -------------------------------------------------------------------------------- /kobopatchfan/verifyWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/verifyWindow.py -------------------------------------------------------------------------------- /kobopatchfan/versionPickerClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/versionPickerClass.py -------------------------------------------------------------------------------- /kobopatchfan/versionPickerWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/versionPickerWindow.py -------------------------------------------------------------------------------- /kobopatchfan/workingDir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/workingDir.py -------------------------------------------------------------------------------- /kobopatchfan/workingDirClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/kobopatchfan/workingDirClass.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/folkemat/KoboPatchFan/HEAD/setup.py --------------------------------------------------------------------------------