Skip to content
This repository has been archived by the owner on Mar 23, 2018. It is now read-only.

Commit

Permalink
1.6.1
Browse files Browse the repository at this point in the history
- Fixed #365
  • Loading branch information
ParticleCore committed Oct 12, 2016
1 parent 05d61d2 commit 96d9c0a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bin/update.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"addons": {
"[email protected]": {
"updates": [{
"version": "1.6.0",
"version": "1.6.1",
"update_link": "https://github.com/ParticleCore/Particle/raw/master/dist/YouTubePlus.xpi",
"applications": {
"gecko": {
Expand Down
Binary file modified dist/YouTubePlus.xpi
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Userscript/YouTubePlus.user.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ==UserScript==
// @version 1.6.0
// @version 1.6.1
// @name YouTube +
// @namespace https://github.com/ParticleCore
// @description YouTube with more freedom
Expand Down Expand Up @@ -2212,7 +2212,7 @@
holder = document.createElement("link");
holder.rel = "stylesheet";
holder.type = "text/css";
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.6.0";
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.6.1";
document.documentElement.appendChild(holder);
}
holder = document.createElement("script");
Expand Down
10 changes: 6 additions & 4 deletions src/Webextension/CSS/YouTubePlus.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@
/* end| Compact thumbnail titles */
/* start| Floater player */
@media screen and (min-width: 657px){
html.floater #player #movie_player:not(.ytp-fullscreen){
html.floater:not(.part_fullbrowser) #player #movie_player:not(.ytp-fullscreen){
box-shadow: 0 0 10px rgb(0, 0, 0) !important;
position: fixed !important;
z-index: 10;
}
html.floater #player #movie_player:not(.ytp-fullscreen) .ytp-next-button,
html.floater #player #movie_player:not(.ytp-fullscreen) .ytp-size-button{
html.floater:not(.part_fullbrowser) #player #movie_player:not(.ytp-fullscreen) .ytp-next-button,
html.floater:not(.part_fullbrowser) #player #movie_player:not(.ytp-fullscreen) .ytp-size-button{
display: none !important;
}
.floater #movie_player:not(.ytp-fullscreen):hover #part_floaterui{
.floater:not(.part_fullbrowser) #movie_player:not(.ytp-fullscreen):hover #part_floaterui{
opacity: 1;
pointer-events: initial;
}
Expand Down Expand Up @@ -220,6 +220,8 @@
position: fixed !important;
right: 0 !important;
top: 0 !important;
height: 100% !important;
width: 100% !important;
}
.part_fullbrowser body{
overflow: hidden;
Expand Down
4 changes: 2 additions & 2 deletions src/Webextension/JS/YouTubePlus.user.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ==UserScript==
// @version 1.6.0
// @version 1.6.1
// @name YouTube +
// @namespace https://github.com/ParticleCore
// @description YouTube with more freedom
Expand Down Expand Up @@ -2212,7 +2212,7 @@
holder = document.createElement("link");
holder.rel = "stylesheet";
holder.type = "text/css";
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.6.0";
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.6.1";
document.documentElement.appendChild(holder);
}
holder = document.createElement("script");
Expand Down
2 changes: 1 addition & 1 deletion src/Webextension/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "YouTube Plus",
"version": "1.6.0",
"version": "1.6.1",
"description": "YouTube with more freedom",
"default_locale": "en",
"icons": {
Expand Down

0 comments on commit 96d9c0a

Please sign in to comment.