Skip to content

Commit

Permalink
Added support for torrenter
Browse files Browse the repository at this point in the history
  • Loading branch information
khloke committed Jul 28, 2015
1 parent 76bb096 commit ed973a5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 2 additions & 0 deletions js/modules.js
Expand Up @@ -70,6 +70,8 @@ var TorrentsLinkModule = {
callback('plugin://plugin.video.pulsar/play?uri=' + encodeURIComponent(url));
} else if (localStorage['magnetAddOn'] == 'kmediatorrent') {
callback('plugin://plugin.video.kmediatorrent/play/' + encodeURIComponent(url));
} else if (localStorage['magnetAddOn'] == 'torrenter') {
callback('plugin://plugin.video.torrenter/?action=playSTRM&url=' + encodeURIComponent(url));
} else {
callback('plugin://plugin.video.xbmctorrent/play/' + encodeURIComponent(url));
}
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
@@ -1,6 +1,6 @@
{
"manifest_version": 2,
"version": "1.7.6.0",
"version": "1.7.7.0",
"name": "Play to Kodi",
"description": "Play, queue and remote control your favourite online media on Kodi / XBMC.",
"options_page": "options.html",
Expand Down
7 changes: 7 additions & 0 deletions options.html
Expand Up @@ -85,6 +85,7 @@
<option value="xbmctorrent">XBMCTorrent</option>
<option value="pulsar">Pulsar</option>
<option value="kmediatorrent">KMediaTorrent</option>
<option value="torrenter">Torrenter</option>
</select>
</div>
</div>
Expand All @@ -104,6 +105,12 @@
<div class="tab-pane" id="changelist">
<div class="alert" style="margin: 0 25px 15px 25px;">If you have problems please contact me directly at <a href="mailto:khloke@gmail.com">khloke@gmail.com</a>. Leaving your problems in the <strong>Reviews won't help</strong> you or me solve the problem if I can't replicate it.</div>
<div style="margin: 0 25px">
<p>
<strong>Update 1.7.7.0</strong>
<ul>
<li>Added support for torrenter for torrent streaming.</li>
</ul>
</p>
<p>
<strong>Update 1.7.6.0</strong>
<ul>
Expand Down

0 comments on commit ed973a5

Please sign in to comment.