Add files
BIN
static/MaterialIcons-Regular.woff2
Executable file
BIN
static/NextTrackThumbnailBarButton.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
static/PauseThumbnailBarButton.png
Normal file
After Width: | Height: | Size: 101 B |
BIN
static/PlayThumbnailBarButton.png
Normal file
After Width: | Height: | Size: 208 B |
BIN
static/PreviousTrackThumbnailBarButton.png
Normal file
After Width: | Height: | Size: 233 B |
BIN
static/WebTorrent.icns
Normal file
BIN
static/WebTorrent.ico
Normal file
After Width: | Height: | Size: 42 KiB |
BIN
static/WebTorrent.png
Normal file
After Width: | Height: | Size: 71 KiB |
BIN
static/WebTorrentFile.icns
Normal file
BIN
static/WebTorrentFile.ico
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
static/WebTorrentFile.png
Normal file
After Width: | Height: | Size: 140 KiB |
39
static/about.html
Normal file
@ -0,0 +1,39 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<style>
|
||||
body {
|
||||
background-color: #ECECEC;
|
||||
font-family: BlinkMacSystemFont, 'Helvetica Neue', Helvetica, sans-serif;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
font-size: 16px;
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
img {
|
||||
width: 65px;
|
||||
height: 65px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 0.9em;
|
||||
-webkit-user-select: text;
|
||||
}
|
||||
p {
|
||||
font-size: 0.8em;
|
||||
-webkit-user-select: text;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<img src="../static/WebTorrent.png">
|
||||
<h1>Leenkx Box</h1>
|
||||
<p>
|
||||
Version <script>document.write(require('../package.json').version)</script>
|
||||
(<script>document.write(require('webtorrent/package.json').version)</script>)
|
||||
(<script>document.write(process.arch)</script>)
|
||||
</p>
|
||||
<p><script>document.write(require('../build/config').APP_COPYRIGHT)</script></p>
|
||||
</body>
|
||||
</html>
|
BIN
static/appdmg.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
static/appdmg@2x.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
static/bigBuckBunny.jpg
Normal file
After Width: | Height: | Size: 303 KiB |
BIN
static/bigBuckBunny.torrent
Normal file
BIN
static/cosmosLaundromat.jpg
Normal file
After Width: | Height: | Size: 743 KiB |
BIN
static/cosmosLaundromat.torrent
Normal file
33
static/linux/share/applications/webtorrent-desktop.desktop
Normal file
@ -0,0 +1,33 @@
|
||||
[Desktop Entry]
|
||||
Name=LeenkxBox
|
||||
Version=1.0
|
||||
GenericName=BitTorrent Client
|
||||
X-GNOME-FullName=LeenkxBox
|
||||
Comment=Download and share files over BitTorrent
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Icon=leenkxbox-desktop
|
||||
Terminal=false
|
||||
Path=/opt/leenkxbox-desktop
|
||||
Exec=/opt/leenkxbox-desktop/LeenkxBox %U
|
||||
TryExec=/opt/leenkxbox-desktop/LeenkxBox
|
||||
StartupNotify=false
|
||||
Categories=Network;FileTransfer;P2P;
|
||||
MimeType=application/x-bittorrent;x-scheme-handler/magnet;x-scheme-handler/stream-magnet;
|
||||
|
||||
Actions=CreateNewTorrent;OpenTorrentFile;OpenTorrentAddress;
|
||||
|
||||
[Desktop Action CreateNewTorrent]
|
||||
Name=Create New Torrent...
|
||||
Exec=/opt/leenkxbox-desktop/LeenkxBox -n
|
||||
Path=/opt/leenkxbox-desktop
|
||||
|
||||
[Desktop Action OpenTorrentFile]
|
||||
Name=Open Torrent File...
|
||||
Exec=/opt/leenkxbox-desktop/LeenkxBox -o
|
||||
Path=/opt/leenkxbox-desktop
|
||||
|
||||
[Desktop Action OpenTorrentAddress]
|
||||
Name=Open Torrent Address...
|
||||
Exec=/opt/leenkxbox-desktop/LeenkxBox -u
|
||||
Path=/opt/leenkxbox-desktop
|
After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 3.6 KiB |
25
static/linux/webtorrent-desktop.ejs
Normal file
@ -0,0 +1,25 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=<%= productName %>
|
||||
<% if (genericName) { %>GenericName=<%= genericName %><% } %>
|
||||
<% if (description) { %>Comment=<%= description %><% } %>
|
||||
Icon=<%= name %>
|
||||
<% if (name) { %>Exec=<%= name %> --no-sandbox %U<% } %><%/*HACK: --no-sandbox fixes an Electron 6 bug. See: #1703*/%>
|
||||
Terminal=false
|
||||
Actions=CreateNewTorrent;OpenTorrentFile;OpenTorrentAddress;
|
||||
<% if (mimeType && mimeType.length) { %>MimeType=<%= mimeType.join(';') %>;<% } %>
|
||||
<% if (categories && categories.length) { %>Categories=<%= categories.join(';') %>;<% } %>
|
||||
StartupNotify=true
|
||||
StartupWMClass=<%= productName %>
|
||||
|
||||
[Desktop Action CreateNewTorrent]
|
||||
Name=Create New Torrent...
|
||||
<% if (name) { %>Exec=<%= name %> --no-sandbox -n <% } %><%/*HACK: --no-sandbox fixes an Electron 6 bug. See: #1703*/%>
|
||||
|
||||
[Desktop Action OpenTorrentFile]
|
||||
Name=Open Torrent File...
|
||||
<% if (name) { %>Exec=<%= name %> --no-sandbox -o <% } %><%/*HACK: --no-sandbox fixes an Electron 6 bug. See: #1703*/%>
|
||||
|
||||
[Desktop Action OpenTorrentAddress]
|
||||
Name=Open Torrent Address...
|
||||
<% if (name) { %>Exec=<%= name %> --no-sandbox -u <% } %><%/*HACK: --no-sandbox fixes an Electron 6 bug. See: #1703*/%>
|
BIN
static/loading.gif
Normal file
After Width: | Height: | Size: 18 KiB |
1574
static/main.css
Normal file
13
static/main.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Main Window</title>
|
||||
<link rel="stylesheet" href="main.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id='body'></div>
|
||||
<script>require('../build/renderer/main.js')</script>
|
||||
</body>
|
||||
</html>
|
BIN
static/sintel.jpg
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
static/sintel.torrent
Normal file
BIN
static/sound/add.wav
Normal file
BIN
static/sound/delete.wav
Normal file
BIN
static/sound/disable.wav
Normal file
BIN
static/sound/done.wav
Normal file
BIN
static/sound/enable.wav
Normal file
BIN
static/sound/error.wav
Normal file
BIN
static/sound/play.wav
Normal file
BIN
static/sound/startup.wav
Normal file
BIN
static/tearsOfSteel.jpg
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
static/tearsOfSteel.torrent
Normal file
25
static/webtorrent.html
Normal file
@ -0,0 +1,25 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Leenkx Box Background Window</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #282828;
|
||||
margin: 5px;
|
||||
overflow: hidden;
|
||||
}
|
||||
img {
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
require('../build/renderer/webtorrent.js')
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<img alt="WebTorrent" src="WebTorrent.png">
|
||||
</body>
|
||||
</html>
|
BIN
static/wiredCd.jpg
Normal file
After Width: | Height: | Size: 76 KiB |