Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mps-youtube/yewtube
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtalhaasghar committed Mar 22, 2023
2 parents c472c7a + 08323c5 commit 32f88ec
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
4 changes: 3 additions & 1 deletion COLLABORATORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ pyperclip
youtube-search-python>=1.6.5
yt-dlp
colorama ; platform_system=="Windows"
pylast
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
with open('requirements.txt', 'r') as fh:
requirements = fh.readlines()

__version__ = "2.9.4"
__version__ = "2.10.1"

options = dict(
name="yewtube",
Expand Down

0 comments on commit 32f88ec

Please sign in to comment.