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

Commit 92bb7a5

Browse files
committed
1.9.0
Fixes #563
1 parent 5693c87 commit 92bb7a5

File tree

8 files changed

+18
-12
lines changed

8 files changed

+18
-12
lines changed

bin/update.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"addons": {
33
44
"updates": [{
5-
"version": "1.8.9",
5+
"version": "1.9.0",
66
"update_link": "https://github.com/ParticleCore/Particle/raw/master/dist/YouTubePlus.xpi",
77
"applications": {
88
"gecko": {

dist/Particle.nex

11 Bytes
Binary file not shown.

dist/YouTubePlus.xpi

6.27 KB
Binary file not shown.

src/Opera/JS/YouTubePlus.user.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ==UserScript==
2-
// @version 1.8.8
2+
// @version 1.9.0
33
// @name YouTube +
44
// @namespace https://github.com/ParticleCore
55
// @description YouTube with more freedom
@@ -601,7 +601,9 @@
601601
player = document.getElementById("movie_player");
602602
if (player) {
603603
player.setPlaybackQuality(user_settings.VID_DFLT_QLTY);
604-
player.cueVideoByPlayerVars(b.args);
604+
if (!user_settings.VID_PLR_ATPL) {
605+
player.cueVideoByPlayerVars(b.args);
606+
}
605607
}
606608
return temp;
607609
};
@@ -2374,7 +2376,7 @@
23742376
holder = document.createElement("link");
23752377
holder.rel = "stylesheet";
23762378
holder.type = "text/css";
2377-
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.8.8";
2379+
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.9.0";
23782380
document.documentElement.appendChild(holder);
23792381
}
23802382
holder = document.createElement("script");

src/Opera/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "Particle",
4-
"version": "1.8.9",
4+
"version": "1.9.0",
55
"description": "YouTube with more freedom",
66
"default_locale": "en",
77
"icons": {

src/Userscript/YouTubePlus.user.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ==UserScript==
2-
// @version 1.8.8
2+
// @version 1.9.0
33
// @name YouTube +
44
// @namespace https://github.com/ParticleCore
55
// @description YouTube with more freedom
@@ -601,7 +601,9 @@
601601
player = document.getElementById("movie_player");
602602
if (player) {
603603
player.setPlaybackQuality(user_settings.VID_DFLT_QLTY);
604-
player.cueVideoByPlayerVars(b.args);
604+
if (!user_settings.VID_PLR_ATPL) {
605+
player.cueVideoByPlayerVars(b.args);
606+
}
605607
}
606608
return temp;
607609
};
@@ -2374,7 +2376,7 @@
23742376
holder = document.createElement("link");
23752377
holder.rel = "stylesheet";
23762378
holder.type = "text/css";
2377-
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.8.8";
2379+
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.9.0";
23782380
document.documentElement.appendChild(holder);
23792381
}
23802382
holder = document.createElement("script");

src/Webextension/JS/YouTubePlus.user.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ==UserScript==
2-
// @version 1.8.8
2+
// @version 1.9.0
33
// @name YouTube +
44
// @namespace https://github.com/ParticleCore
55
// @description YouTube with more freedom
@@ -601,7 +601,9 @@
601601
player = document.getElementById("movie_player");
602602
if (player) {
603603
player.setPlaybackQuality(user_settings.VID_DFLT_QLTY);
604-
player.cueVideoByPlayerVars(b.args);
604+
if (!user_settings.VID_PLR_ATPL) {
605+
player.cueVideoByPlayerVars(b.args);
606+
}
605607
}
606608
return temp;
607609
};
@@ -2374,7 +2376,7 @@
23742376
holder = document.createElement("link");
23752377
holder.rel = "stylesheet";
23762378
holder.type = "text/css";
2377-
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.8.8";
2379+
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.9.0";
23782380
document.documentElement.appendChild(holder);
23792381
}
23802382
holder = document.createElement("script");

src/Webextension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "YouTube Plus",
4-
"version": "1.8.9",
4+
"version": "1.9.0",
55
"description": "YouTube with more freedom",
66
"default_locale": "en",
77
"icons": {

0 commit comments

Comments
 (0)