├── .gitignore ├── LICENSE ├── README.md ├── additional_hosts.py ├── app_info.json ├── icon.ico ├── icons ├── alert.svg ├── book-open.svg ├── bulb.svg ├── check-circle.svg ├── clock.svg ├── github.svg ├── heart.svg ├── info.svg ├── play.svg ├── refresh.svg ├── send.svg ├── settings.svg ├── sun.svg ├── trash.svg ├── users.svg ├── video.svg └── x-circle.svg ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | build/ 3 | dist/ 4 | __pycache__/ 5 | Goida AI Unlocker.spec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/README.md -------------------------------------------------------------------------------- /additional_hosts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/additional_hosts.py -------------------------------------------------------------------------------- /app_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/app_info.json -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icon.ico -------------------------------------------------------------------------------- /icons/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/alert.svg -------------------------------------------------------------------------------- /icons/book-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/book-open.svg -------------------------------------------------------------------------------- /icons/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/bulb.svg -------------------------------------------------------------------------------- /icons/check-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/check-circle.svg -------------------------------------------------------------------------------- /icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/clock.svg -------------------------------------------------------------------------------- /icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/github.svg -------------------------------------------------------------------------------- /icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/heart.svg -------------------------------------------------------------------------------- /icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/info.svg -------------------------------------------------------------------------------- /icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/play.svg -------------------------------------------------------------------------------- /icons/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/refresh.svg -------------------------------------------------------------------------------- /icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/send.svg -------------------------------------------------------------------------------- /icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/settings.svg -------------------------------------------------------------------------------- /icons/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/sun.svg -------------------------------------------------------------------------------- /icons/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/trash.svg -------------------------------------------------------------------------------- /icons/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/users.svg -------------------------------------------------------------------------------- /icons/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/video.svg -------------------------------------------------------------------------------- /icons/x-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/icons/x-circle.svg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvenCores/Goida-AI-Unlocker/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyside6 --------------------------------------------------------------------------------