Skip to content

Commit

Permalink
v2.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmaher committed Nov 2, 2017
1 parent a348c9f commit 02d11a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Enhanced RT.user.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name Enhanced RT
// @version 2.0.5
// @version 2.0.6
// @description Enhancments for the Rooster Teeth family of websites
// @include *://*.roosterteeth.com/*
// @exclude *://store.roosterteeth.com/*
Expand Down Expand Up @@ -51,6 +51,9 @@ To be fixed
Versions
========
2.0.6
-Removed temporary fix that adds Sugar Pine 7 to the channel filter drop down options. No longer needed now that it has been officially added to the website.
2.0.5
-Added Game Attack and Sugar Pine 7 filters.
-Removed Endless Videos options since the feature isn't working.
Expand Down Expand Up @@ -484,12 +487,14 @@ if(window.location.pathname=="/episode/recently-added")
// ***************
// Temp Fix to add SP7 drop down option
// ***************
/*
SP7fix = document.createElement('option');
SP7fix.value = '9';
SP7fix.dataset.filter = 'sugarpine7';
SP7fix.label = 'Sugar Pine 7';
var channelFilter = document.getElementById("channelFilter");
channelFilter.append(SP7fix);
*/


// ***************
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
"description": "Enhancements for the Rooster Teeth family of websites.",
"name": "Enhanced RT",
"author": "Patrick Maher",
"version": "2.0.5"
"version": "2.0.6"
}

0 comments on commit 02d11a0

Please sign in to comment.