diff --git a/.github/banner.svg b/.github/banner.svg new file mode 100644 index 000000000..35dc93eae --- /dev/null +++ b/.github/banner.svg @@ -0,0 +1,31 @@ + + + + + + + + + diff --git a/README.md b/README.md index 8ce5ed354..adbe2392c 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,15 @@
-# YT-DLP -A command-line program to download videos from YouTube and many other [video platforms](supportedsites.md) - - -[![Release version](https://img.shields.io/github/v/release/yt-dlp/yt-dlp?color=brightgreen&label=Release&style=for-the-badge)](https://github.com/yt-dlp/yt-dlp/releases/latest) -[![License: Unlicense](https://img.shields.io/badge/License-Unlicense-blue.svg?style=for-the-badge)](LICENSE) +[![YT-DLP](https://github.com/yt-dlp/yt-dlp/tree/master/.github/banner.svg)](#readme) + +[![Release version](https://img.shields.io/github/v/release/yt-dlp/yt-dlp?color=blue&label=%20&style=for-the-badge)](https://github.com/yt-dlp/yt-dlp/releases/latest) +[![CI Status](https://img.shields.io/github/workflow/status/yt-dlp/yt-dlp/Core%20Tests/master?label=&style=for-the-badge)](https://github.com/yt-dlp/yt-dlp/actions) +[![License: Unlicense](https://img.shields.io/badge/-Unlicense-blue.svg?style=for-the-badge)](LICENSE) +[![Supported Sites](https://img.shields.io/badge/-Supported_Sites-brightgreen.svg?style=for-the-badge)](supportedsites.md) +[![Discord](https://img.shields.io/discord/807245652072857610?color=blue&label=%20​&logo=discord&style=for-the-badge)](https://discord.gg/H5MNcFW63r) [![Doc Status](https://readthedocs.org/projects/yt-dlp/badge/?version=latest&style=for-the-badge)](https://yt-dlp.readthedocs.io) -[![Discord](https://img.shields.io/discord/807245652072857610?color=blue&label=discord&logo=discord&style=for-the-badge)](https://discord.gg/H5MNcFW63r) [![Commits](https://img.shields.io/github/commit-activity/m/yt-dlp/yt-dlp?label=commits&style=for-the-badge)](https://github.com/yt-dlp/yt-dlp/commits) -[![Last Commit](https://img.shields.io/github/last-commit/yt-dlp/yt-dlp/master?style=for-the-badge)](https://github.com/yt-dlp/yt-dlp/commits) +[![Last Commit](https://img.shields.io/github/last-commit/yt-dlp/yt-dlp/master?label=%20&style=for-the-badge)](https://github.com/yt-dlp/yt-dlp/commits) [![Downloads](https://img.shields.io/github/downloads/yt-dlp/yt-dlp/total?style=for-the-badge&color=blue)](https://github.com/yt-dlp/yt-dlp/releases/latest) [![PyPi Downloads](https://img.shields.io/pypi/dm/yt-dlp?label=PyPi&style=for-the-badge)](https://pypi.org/project/yt-dlp) diff --git a/devscripts/cloud.ico b/devscripts/cloud.ico deleted file mode 100644 index 6d742ce63..000000000 Binary files a/devscripts/cloud.ico and /dev/null differ diff --git a/devscripts/logo.ico b/devscripts/logo.ico new file mode 100644 index 000000000..5503a4350 Binary files /dev/null and b/devscripts/logo.ico differ diff --git a/pyinst.py b/pyinst.py index eac97e52d..fb8eca3e5 100644 --- a/pyinst.py +++ b/pyinst.py @@ -73,7 +73,7 @@ excluded_modules = ['test', 'ytdlp_plugins', 'youtube-dl', 'youtube-dlc'] PyInstaller.__main__.run([ '--name=yt-dlp%s' % _x86, '--onefile', - '--icon=devscripts/cloud.ico', + '--icon=devscripts/logo.ico', *[f'--exclude-module={module}' for module in excluded_modules], *[f'--hidden-import={module}' for module in dependancies], '--upx-exclude=vcruntime140.dll',