├── .gitignore ├── .pylintrc ├── CHANGELOG.MD ├── LICENSE ├── README.MD ├── app.py ├── config_example └── config.json ├── requirements.txt ├── resources ├── 256x256.ico ├── logo.jpg └── screenshot.png ├── tables_views ├── __init__.py ├── processed_view.py └── queue_view.py ├── threads ├── __init__.py ├── download_thread.py └── initial_thread.py └── windows ├── __init__.py ├── log_window.py └── message_window.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGELOG.MD: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.0.1 - 2023-06-29 4 | 5 | - initial release 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/README.MD -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/app.py -------------------------------------------------------------------------------- /config_example/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/config_example/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyQt6==6.5.1 2 | pyinstaller==5.13.0 -------------------------------------------------------------------------------- /resources/256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/resources/256x256.ico -------------------------------------------------------------------------------- /resources/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/resources/logo.jpg -------------------------------------------------------------------------------- /resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/resources/screenshot.png -------------------------------------------------------------------------------- /tables_views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/tables_views/__init__.py -------------------------------------------------------------------------------- /tables_views/processed_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/tables_views/processed_view.py -------------------------------------------------------------------------------- /tables_views/queue_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/tables_views/queue_view.py -------------------------------------------------------------------------------- /threads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/threads/__init__.py -------------------------------------------------------------------------------- /threads/download_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/threads/download_thread.py -------------------------------------------------------------------------------- /threads/initial_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/threads/initial_thread.py -------------------------------------------------------------------------------- /windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/windows/__init__.py -------------------------------------------------------------------------------- /windows/log_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/windows/log_window.py -------------------------------------------------------------------------------- /windows/message_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asomoza/gallerydl-beyond/HEAD/windows/message_window.py --------------------------------------------------------------------------------