Skip to content

Commit

Permalink
Youtube Theater 1.2.3 release
Browse files Browse the repository at this point in the history
## v1.2.3 ... (01 AUGUST 19)

### Fixes:
`+` Fixed Stretch video to fill player, as some videos end up being stretched too far and cutting off a bit of the sides of the videos.
  • Loading branch information
JourneyOver committed Aug 1, 2019
1 parent 1e02c20 commit f98e4dd
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 9 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# YouTube Theater Changelog

## v1.2.3 ... (01 AUGUST 19)

### Fixes:
`+` Fixed Stretch video to fill player, as some videos end up being stretched too far and cutting off a bit of the sides of the videos.

## v1.2.2 ... (02 JULY 19)

### Additions:
`+`Added an option to stretch the main video container on youtube to be a bit wider. `Especially on a 2K monitor the default youtube container is ridiculously narrow, but even on 1080p using this means at least one more column of videos visible.`
`+` Added an option to stretch the main video container on youtube to be a bit wider. `Especially on a 2K monitor the default youtube container is ridiculously narrow, but even on 1080p using this means at least one more column of videos visible.`

## v1.2.1 ... (25 MAY 19)

Expand Down
2 changes: 1 addition & 1 deletion css/optionals/min/stretch-video.min.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
video{position:static!important;width:100%!important;object-fit:fill!important}
video{position:static!important;width:100%!important;transform:scaleX(1)!important;object-fit:fill!important}
1 change: 1 addition & 0 deletions css/optionals/stretch-video.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
video {
position: static !important;
width: 100% !important;
transform: scaleX(1) !important;

object-fit: fill !important;
}
2 changes: 1 addition & 1 deletion css/theme/theme.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#copyright div::after {
white-space: pre;
content: "\A Youtube Theater - Version 1.2.2";
content: "\A Youtube Theater - Version 1.2.3";
}

::-webkit-scrollbar {
Expand Down
2 changes: 1 addition & 1 deletion css/usercss-template.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* ==UserStyle==
@name Youtube Theater
@version 1.2.2
@version 1.2.3
@description Expands videos to fill all free space inside browser window.
@namespace https://github.com/StylusThemes
@author StylusThemes <https://github.com/StylusThemes>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "youtube-theater",
"title": "Youtube Theater",
"version": "1.2.2",
"version": "1.2.3",
"description": "Expands videos to fill all free space inside browser window.",
"license": "CC-BY-SA-4.0",
"repository": "StylusThemes/YouTube-Theater",
Expand Down
2 changes: 1 addition & 1 deletion sass/partials/_version.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
div {
&::after {
white-space: pre;
content: "\A Youtube Theater - Version 1.2.2";
content: "\A Youtube Theater - Version 1.2.3";
}
}
}
6 changes: 3 additions & 3 deletions style.user.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* ==UserStyle==
@name Youtube Theater
@version 1.2.2
@version 1.2.3
@description Expands videos to fill all free space inside browser window.
@namespace https://github.com/StylusThemes
@author StylusThemes <https://github.com/StylusThemes>
Expand All @@ -18,7 +18,7 @@ VMaxWidthN "No" <<<EOT
@advanced dropdown SVTFP "Stretch Video To Fill Player?" {
SVTFPY "Yes" <<<EOT
video{position:static!important;width:100%!important;object-fit:fill!important} EOT;
video{position:static!important;width:100%!important;transform:scaleX(1)!important;object-fit:fill!important} EOT;
SVTFPN "No" <<<EOT
EOT;
}
Expand Down Expand Up @@ -47,7 +47,7 @@ ytd-app #page-manager>ytd-browse:not([page-subtype=playlist]){display:block}ytd-
@-moz-document domain("youtube.com") {
#copyright div::after {
white-space: pre;
content: "\A Youtube Theater - Version 1.2.2";
content: "\A Youtube Theater - Version 1.2.3";
}

::-webkit-scrollbar {
Expand Down

0 comments on commit f98e4dd

Please sign in to comment.