├── .github └── workflows │ └── buildtpp.yml ├── .gitignore ├── Bannner.png ├── LICENSE ├── README.md ├── TouchPortalYTMusic ├── TPYTMD.py ├── build.py ├── entry.tp ├── icon.ico ├── icon.png └── start.sh └── requirements.txt /.github/workflows/buildtpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/.github/workflows/buildtpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | *.tpp -------------------------------------------------------------------------------- /Bannner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/Bannner.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /TouchPortalYTMusic/TPYTMD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/TouchPortalYTMusic/TPYTMD.py -------------------------------------------------------------------------------- /TouchPortalYTMusic/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/TouchPortalYTMusic/build.py -------------------------------------------------------------------------------- /TouchPortalYTMusic/entry.tp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/TouchPortalYTMusic/entry.tp -------------------------------------------------------------------------------- /TouchPortalYTMusic/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/TouchPortalYTMusic/icon.ico -------------------------------------------------------------------------------- /TouchPortalYTMusic/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/TouchPortalYTMusic/icon.png -------------------------------------------------------------------------------- /TouchPortalYTMusic/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/TouchPortalYTMusic/start.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DamienStaebler/TP-YTDM-Plugin/HEAD/requirements.txt --------------------------------------------------------------------------------