├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── updater.sh │ └── updater.yml ├── LICENSE ├── README.md ├── README_fr.md ├── conf ├── config.yml └── nginx.conf ├── doc ├── ADMIN.md ├── ADMIN_fr.md ├── DESCRIPTION.md └── screenshots │ └── screenshot.png ├── manifest.toml ├── scripts ├── _common.sh ├── backup ├── change_url ├── install ├── remove ├── restore └── upgrade └── tests.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/.github/workflows/updater.sh -------------------------------------------------------------------------------- /.github/workflows/updater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/.github/workflows/updater.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/README.md -------------------------------------------------------------------------------- /README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/README_fr.md -------------------------------------------------------------------------------- /conf/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/conf/config.yml -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /doc/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/doc/ADMIN.md -------------------------------------------------------------------------------- /doc/ADMIN_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/doc/ADMIN_fr.md -------------------------------------------------------------------------------- /doc/DESCRIPTION.md: -------------------------------------------------------------------------------- 1 | Web GUI for youtube-dl -------------------------------------------------------------------------------- /doc/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/doc/screenshots/screenshot.png -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/manifest.toml -------------------------------------------------------------------------------- /scripts/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/scripts/_common.sh -------------------------------------------------------------------------------- /scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/scripts/backup -------------------------------------------------------------------------------- /scripts/change_url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/scripts/change_url -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/scripts/remove -------------------------------------------------------------------------------- /scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/scripts/restore -------------------------------------------------------------------------------- /scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/scripts/upgrade -------------------------------------------------------------------------------- /tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/alltube_ynh/HEAD/tests.toml --------------------------------------------------------------------------------