Moved back to jsDelivr, updated README
This commit is contained in:
parent
0a192732f4
commit
79a4cdd953
4 changed files with 7 additions and 28 deletions
|
@ -10,7 +10,7 @@
|
|||
- [x] Seeding files (Single file only for the moment)
|
||||
- [ ] Seeding CORS-enabled remote files (Coming Soon)
|
||||
- [x] Download/Upload speed per torrent
|
||||
- [ ] Download/Upload speed of client (All torrents)
|
||||
- [x] Download/Upload speed of client (All torrents)
|
||||
- [ ] Removing torrents from the client (Coming Soon)
|
||||
- [ ] Pause torrent (Coming Soon)
|
||||
- [ ] Selecting/Deselecting files (Coming Soon)
|
||||
|
|
|
@ -8,9 +8,7 @@
|
|||
<meta name="keywords" content="βTorrent, btorrent, client, webtorrent, browser, torrent, stream, bittorrent">
|
||||
<meta name="author" content="Diego Rodríguez Baquero - DiegoRBaquero">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<!--webtorrent@0.63.3,-->
|
||||
<script src="webtorrent.min.js">//WebTorrent 0.63.4</script>
|
||||
<script src="https://cdn.jsdelivr.net/g/momentjs@2.10,angularjs@1.4,angular.ui-grid@3.0,angular.ng-notify@0.7,angular.file-upload@10.1"></script>
|
||||
<script src="https://cdn.jsdelivr.net/g/webtorrent@0.63,momentjs@2.10,angularjs@1.4,angular.ui-grid@3.0,angular.ng-notify@0.7,angular.file-upload@10.1"></script>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/g/normalize@3.0,skeleton@2.0,angular.ng-notify@0.7(ng-notify.min.css)">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/fontawesome/4.5/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/angular.ui-grid/3.0.7/ui-grid.min.css">
|
||||
|
@ -18,7 +16,7 @@
|
|||
</head>
|
||||
<body ng-controller="bTorrentCtrl" ng-cloak="">
|
||||
<header>
|
||||
<h1>βTorrent<span class="version"> v0.8.0</span></h1>
|
||||
<h1>βTorrent<span class="version"> v0.8.1</span></h1>
|
||||
</header>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
@ -37,7 +35,7 @@
|
|||
</div>
|
||||
<div ui-grid="gridOptions" ui-grid-resize-columns ui-grid-selection class="row grid"></div>
|
||||
<div ng-if="selectedTorrent" class="row">
|
||||
<div class="six columns">
|
||||
<div style="overflow: auto" class="six columns">
|
||||
<h5>{{selectedTorrent.name}}</h5>
|
||||
<h6>Share</h6>
|
||||
<ul>
|
||||
|
|
16
compiled/webtorrent.min.js
vendored
16
compiled/webtorrent.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -8,9 +8,7 @@ html(ng-app='bTorrent', lang='en')
|
|||
meta(name='keywords', content='βTorrent, btorrent, client, webtorrent, browser, torrent, stream, bittorrent')
|
||||
meta(name='author', content='Diego Rodríguez Baquero - DiegoRBaquero')
|
||||
meta(name='viewport', content='width=device-width, initial-scale=1')
|
||||
//webtorrent@0.63.3,
|
||||
script(src='webtorrent.min.js') //WebTorrent 0.63.4
|
||||
script(src='https://cdn.jsdelivr.net/g/momentjs@2.10,angularjs@1.4,angular.ui-grid@3.0,angular.ng-notify@0.7,angular.file-upload@10.1')
|
||||
script(src='https://cdn.jsdelivr.net/g/webtorrent@0.63,momentjs@2.10,angularjs@1.4,angular.ui-grid@3.0,angular.ng-notify@0.7,angular.file-upload@10.1')
|
||||
link(rel='stylesheet', href='https://cdn.jsdelivr.net/g/normalize@3.0,skeleton@2.0,angular.ng-notify@0.7(ng-notify.min.css)')
|
||||
link(rel='stylesheet', href='https://cdn.jsdelivr.net/fontawesome/4.5/css/font-awesome.min.css')
|
||||
link(rel='stylesheet', href='https://cdn.jsdelivr.net/angular.ui-grid/3.0.7/ui-grid.min.css')
|
||||
|
@ -19,8 +17,7 @@ html(ng-app='bTorrent', lang='en')
|
|||
header
|
||||
h1
|
||||
| βTorrent
|
||||
span.version v0.8.0
|
||||
|
||||
span.version v0.8.1
|
||||
.container
|
||||
.row
|
||||
.four.columns
|
||||
|
@ -39,7 +36,7 @@ html(ng-app='bTorrent', lang='en')
|
|||
| Seed a file
|
||||
.row.grid(ui-grid='gridOptions', ui-grid-resize-columns, ui-grid-selection)
|
||||
.row(ng-if="selectedTorrent")
|
||||
.six.columns
|
||||
.six.columns(style='overflow: auto')
|
||||
h5 {{selectedTorrent.name}}
|
||||
h6 Share
|
||||
ul
|
||||
|
|
Loading…
Reference in a new issue