├── .github └── FUNDING.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── OTA.py ├── README.md ├── afdian ├── afdian-Alive24.png ├── tips-alipay.png └── tips-wechat.png ├── configDialog.py ├── configDialog.ui ├── doc └── img │ ├── sample1.png │ ├── sample2.png │ ├── sample3.png │ └── sample4.png ├── exceptHookHandler.py ├── gui.py ├── gui.ui ├── main-onefile.spec ├── main.py ├── main.spec ├── requirements.txt ├── solutionWidget.py ├── solutionWidget.ui ├── tips.png ├── tool └── mergePic.py └── util.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | build 3 | __pycache__ 4 | tool/pics 5 | Database.db 6 | .vscode 7 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /OTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/OTA.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/README.md -------------------------------------------------------------------------------- /afdian/afdian-Alive24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/afdian/afdian-Alive24.png -------------------------------------------------------------------------------- /afdian/tips-alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/afdian/tips-alipay.png -------------------------------------------------------------------------------- /afdian/tips-wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/afdian/tips-wechat.png -------------------------------------------------------------------------------- /configDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/configDialog.py -------------------------------------------------------------------------------- /configDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/configDialog.ui -------------------------------------------------------------------------------- /doc/img/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/doc/img/sample1.png -------------------------------------------------------------------------------- /doc/img/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/doc/img/sample2.png -------------------------------------------------------------------------------- /doc/img/sample3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/doc/img/sample3.png -------------------------------------------------------------------------------- /doc/img/sample4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/doc/img/sample4.png -------------------------------------------------------------------------------- /exceptHookHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/exceptHookHandler.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/gui.py -------------------------------------------------------------------------------- /gui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/gui.ui -------------------------------------------------------------------------------- /main-onefile.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/main-onefile.spec -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/main.py -------------------------------------------------------------------------------- /main.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/main.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/requirements.txt -------------------------------------------------------------------------------- /solutionWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/solutionWidget.py -------------------------------------------------------------------------------- /solutionWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/solutionWidget.ui -------------------------------------------------------------------------------- /tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/tips.png -------------------------------------------------------------------------------- /tool/mergePic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/tool/mergePic.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alive24/PCRJJCAnalyzer/HEAD/util.py --------------------------------------------------------------------------------