Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmaher committed Mar 18, 2018
1 parent 79e0d9c commit d887a5e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
18 changes: 11 additions & 7 deletions Enhanced RT.user.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name Enhanced RT
// @version 3.0.0
// @version 3.0.1
// @description Enhancments for the Rooster Teeth family of websites
// @include *://*.roosterteeth.com/*
// @exclude *://store.roosterteeth.com/*
Expand Down Expand Up @@ -51,13 +51,17 @@ To be fixed
Versions
========
3.0.1
-Beta site: Fixed bug in conversion of comment timestamps to seconds when the timestamp contained hours.
3.0.0
-Added initial support for the Rooster Teeth Beta site.
-Created Beta site Recently Added video page which uses Rooster Teeth's API to determine available channles and videos.
-Beta site Recently Added page displays videos in a grid view, allows the user to loaded additional videos on the page, and the videos can be filtered by channel.
-Beta site RECENT VIDEOS text on home page is converted to a clickable link to the Recently Added page.
-Beta site video comment timestamps are converted to clickable links.
-Beta site Binge Mode on/off setting added to the settings page.
-Beta site: Created Recently Added video page which uses Rooster Teeth's API to determine available channles and videos.
-Beta site: Recently Added page displays videos in a grid view, allows the user to loaded additional videos on the page, and the videos can be filtered by channel.
-Beta site: RECENT VIDEOS text on home page is converted to a clickable link to the Recently Added page.
-Beta site: video comment timestamps are converted to clickable links.
-Beta site: Binge Mode on/off setting added to the settings page.
2.0.6
Expand Down Expand Up @@ -2079,7 +2083,7 @@ else // On SVOD
{
var videoID = document.getElementsByTagName("video")[0].id;
document.getElementsByClassName('video-container')[0].scrollIntoView(false);
document.getElementById(videoID).currentTime=(((matchTimestamp[1] != undefined)?parseInt(matchTimestamp[1]):0 * 3600) + (parseInt(matchTimestamp[2]) * 60) + parseInt(matchTimestamp[3]));
document.getElementById(videoID).currentTime=(((matchTimestamp[1] != undefined)?(parseInt(matchTimestamp[1]) * 3600 ) : 0) + (parseInt(matchTimestamp[2]) * 60) + parseInt(matchTimestamp[3]));
document.getElementById(videoID).play();
//console.log(((matchTimestamp[1] != undefined)?parseInt(matchTimestamp[1]):0 * 3600));
}
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": "3.0.0"
"version": "3.0.1"
}

0 comments on commit d887a5e

Please sign in to comment.