Merge branch 'master' of github.com:mps-youtube/yewtube

Esse commit está contido em:
Talha Asghar
2023-03-22 14:17:15 +05:00
5 arquivos alterados com 19 adições e 5 exclusões
+11
Ver Arquivo
@@ -2,6 +2,17 @@
<!--next-version-placeholder-->
## v2.10.1 (2023-03-21)
### Fix
* #980 added pylast as dependency in req.txt ([`48cc757`](https://github.com/mps-youtube/yewtube/commit/48cc757a4e89c551d6bcbbe54614f11fedeabbe9))
## v2.10.0 (2023-03-21)
### Feature
* Added subtitle suppport for vlc related to #331 ([`96f2efd`](https://github.com/mps-youtube/yewtube/commit/96f2efd8352bf5cd3d3310214af69e0e6db37f5b))
### Documentation
* Added collaborators and contributors page ([`f258403`](https://github.com/mps-youtube/yewtube/commit/f25840322dea95d80b591732a2d3224047c020fc))
## v2.9.4 (2023-01-28)
### Fix
* Semantic release python pypi receipe ([`495629a`](https://github.com/mps-youtube/yewtube/commit/495629ab78534a1a6b36a2adae2bc6c200083706))
+3 -1
Ver Arquivo
@@ -15,13 +15,15 @@ You can also find lists of all contributors [in this file](./CONTRIBUTORS) or [i
## [Talha Asghar](https://github.com/iamtalhaasghar)
[![gh-sponsor](https://img.shields.io/badge/_-Github-orange.svg?logo=github&labelColor=555555&style=for-the-badge)](https://github.com/iamtalhaasghar)
[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/iamtalhaasghar)
* created yewtube - a fork of mps-youtube with no Youtube API Key
* created yewtube - a fork of mps-youtube with no Youtube API Key, vlc with no gui, vlc subtitles support
* was made [owner of mps-youtube](https://github.com/mps-youtube/yewtube/discussions/1202) organization by [Ian Douglas Scott](https://github.com/orgs/mps-youtube/people/ids1024)
## [Jiri Hörner](https://github.com/hrnr)
[![gh-sponsor](https://img.shields.io/badge/_-Github-red.svg?logo=github&labelColor=555555&style=for-the-badge)](https://github.com/hrnr)
* implemented the mpris support which is the most exciting feature
* Member of mps-youtube organization
## [JKatzwinkel](https://github.com/JKatzwinkel)
[![gh-sponsor](https://img.shields.io/badge/_-Github-red.svg?logo=github&labelColor=555555&style=for-the-badge)](https://github.com/JKatzwinkel)
* wrote majority of the code for porting mps-youtube to the new youtube API
* Member of mps-youtube organization
## [kraetzin](https://github.com/kraetzin)
[![gh-sponsor](https://img.shields.io/badge/_-Github-red.svg?logo=github&labelColor=555555&style=for-the-badge)](https://github.com/kraetzin)
+3 -3
Ver Arquivo
@@ -8,12 +8,12 @@ LABEL maintainer="Justin Garrison <justinleegarrison@gmail.com>" \
org.label-schema.vcs-url="https://github.com/mps-youtube/mps-youtube" \
org.label-schema.docker.cmd="docker run -v /dev/snd:/dev/snd -it --rm --privileged --name mpsyt mpsyt"
RUN DEBIAN_FRONTEND=noninteractive && \
apt-get update && \
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y mplayer mpv && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean && apt-get purge
RUN pip install mps-youtube youtube-dl
RUN pip install --no-cache mps-youtube youtube-dl
ENTRYPOINT ["mpsyt"]
+1
Ver Arquivo
@@ -4,3 +4,4 @@ pyperclip
youtube-search-python>=1.6.5
yt-dlp
colorama ; platform_system=="Windows"
pylast
+1 -1
Ver Arquivo
@@ -21,7 +21,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
with open('requirements.txt', 'r') as fh:
requirements = fh.readlines()
__version__ = "2.9.4"
__version__ = "2.10.1"
options = dict(
name="yewtube",