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

Commit d9964d5

Browse files
committed
1.9.6
Closes #629
1 parent f6b88cd commit d9964d5

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
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
"unlisted-particle@particlecore.github.io": {
44
"updates": [{
5-
"version": "1.9.5",
5+
"version": "1.9.6",
66
"update_link": "https://github.com/ParticleCore/Particle/raw/master/dist/YouTubePlus.xpi",
77
"applications": {
88
"gecko": {

dist/Particle.nex

-17 Bytes
Binary file not shown.

dist/YouTubePlus.xpi

31 Bytes
Binary file not shown.

src/Userscript/YouTubePlus.user.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ==UserScript==
2-
// @version 1.9.5
2+
// @version 1.9.6
33
// @name YouTube +
44
// @namespace https://github.com/ParticleCore
55
// @description YouTube with more freedom
@@ -595,6 +595,7 @@
595595
player.cueVideoByPlayerVars(b.args);
596596
}
597597
player.setPlaybackQuality(user_settings.VID_DFLT_QLTY);
598+
player.setPlaybackQualityRange(user_settings.VID_DFLT_QLTY);
598599
}
599600
return temp;
600601
};
@@ -1505,6 +1506,7 @@
15051506
player = document.getElementById("movie_player");
15061507
if (player) {
15071508
player.setPlaybackQuality(user_settings.VID_DFLT_QLTY);
1509+
player.setPlaybackQualityRange(user_settings.VID_DFLT_QLTY);
15081510
}
15091511
}
15101512
}
@@ -2429,7 +2431,7 @@
24292431
holder = document.createElement("link");
24302432
holder.rel = "stylesheet";
24312433
holder.type = "text/css";
2432-
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.9.4";
2434+
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.9.6";
24332435
document.documentElement.appendChild(holder);
24342436
}
24352437
holder = document.createElement("script");

src/Webextension/JS/YouTubePlus.user.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// ==UserScript==
2-
// @version 1.9.5
2+
// @version 1.9.6
33
// @name YouTube +
44
// @namespace https://github.com/ParticleCore
55
// @description YouTube with more freedom
@@ -595,6 +595,7 @@
595595
player.cueVideoByPlayerVars(b.args);
596596
}
597597
player.setPlaybackQuality(user_settings.VID_DFLT_QLTY);
598+
player.setPlaybackQualityRange(user_settings.VID_DFLT_QLTY);
598599
}
599600
return temp;
600601
};
@@ -1505,6 +1506,7 @@
15051506
player = document.getElementById("movie_player");
15061507
if (player) {
15071508
player.setPlaybackQuality(user_settings.VID_DFLT_QLTY);
1509+
player.setPlaybackQualityRange(user_settings.VID_DFLT_QLTY);
15081510
}
15091511
}
15101512
}
@@ -2429,7 +2431,7 @@
24292431
holder = document.createElement("link");
24302432
holder.rel = "stylesheet";
24312433
holder.type = "text/css";
2432-
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.9.4";
2434+
holder.href = "https://particlecore.github.io/Particle/stylesheets/YouTubePlus.css?v=1.9.6";
24332435
document.documentElement.appendChild(holder);
24342436
}
24352437
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.9.5",
4+
"version": "1.9.6",
55
"description": "YouTube with more freedom",
66
"default_locale": "en",
77
"icons": {

0 commit comments

Comments
 (0)