├── .gitignore ├── README.md ├── Win_app └── goalScreener.exe ├── assets ├── ComicMono-Bold.ttf ├── ComicMono.ttf ├── Quest.json ├── output_image.png └── quest_icon.png ├── example ├── background.png └── output.png ├── goalScreener-1.0-1-x86_64.pkg.tar.zst ├── goalScreener.deb ├── goalScreener.py └── requirement.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/README.md -------------------------------------------------------------------------------- /Win_app/goalScreener.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/Win_app/goalScreener.exe -------------------------------------------------------------------------------- /assets/ComicMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/assets/ComicMono-Bold.ttf -------------------------------------------------------------------------------- /assets/ComicMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/assets/ComicMono.ttf -------------------------------------------------------------------------------- /assets/Quest.json: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/output_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/assets/output_image.png -------------------------------------------------------------------------------- /assets/quest_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/assets/quest_icon.png -------------------------------------------------------------------------------- /example/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/example/background.png -------------------------------------------------------------------------------- /example/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/example/output.png -------------------------------------------------------------------------------- /goalScreener-1.0-1-x86_64.pkg.tar.zst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/goalScreener-1.0-1-x86_64.pkg.tar.zst -------------------------------------------------------------------------------- /goalScreener.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/goalScreener.deb -------------------------------------------------------------------------------- /goalScreener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L4z3x/goal_screener/HEAD/goalScreener.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | Pyqt5 2 | pillow 3 | --------------------------------------------------------------------------------