Skip to content

Commit

Permalink
0.1.3
Browse files Browse the repository at this point in the history
Closes #415
  • Loading branch information
ParticleCore committed Apr 12, 2018
1 parent 87fe038 commit c865a20
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/update.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"[email protected]" : {
"updates" : [
{
"version" : "0.1.2",
"version" : "0.1.3",
"update_link" : "https://github.com/ParticleCore/Iridium/raw/master/dist/Iridium.xpi",
"applications" : {
"gecko" : {
Expand Down
Binary file modified dist/Iridium.xpi
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Userscript/Iridium.user.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ==UserScript==
// @version 0.1.2
// @version 0.1.3
// @name Iridium
// @namespace https://github.com/ParticleCore
// @description YouTube with more freedom
Expand Down Expand Up @@ -3979,7 +3979,7 @@
var player_container;
var is_already_floating;

if (!user_settings.player_always_visible || document.getElementById("miniplayer-bar")) {
if (!user_settings.player_always_visible || document.querySelector("ytd-miniplayer-bar-renderer")) {
return;
}

Expand Down
4 changes: 2 additions & 2 deletions src/Webextension/js/Iridium.user.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ==UserScript==
// @version 0.1.2
// @version 0.1.3
// @name Iridium
// @namespace https://github.com/ParticleCore
// @description YouTube with more freedom
Expand Down Expand Up @@ -3979,7 +3979,7 @@
var player_container;
var is_already_floating;

if (!user_settings.player_always_visible || document.getElementById("miniplayer-bar")) {
if (!user_settings.player_always_visible || document.querySelector("ytd-miniplayer-bar-renderer")) {
return;
}

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" : "Iridium",
"version" : "0.1.2",
"version" : "0.1.3",
"description" : "YouTube with more freedom",
"default_locale" : "en",
"icons" : {
Expand Down

0 comments on commit c865a20

Please sign in to comment.