Add files

This commit is contained in:
2025-01-24 06:58:00 +01:00
parent f184f37410
commit 4712f878b9
186 changed files with 40911 additions and 0 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

BIN
static/WebTorrent.icns Normal file

Binary file not shown.

BIN
static/WebTorrent.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

BIN
static/WebTorrent.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

BIN
static/WebTorrentFile.icns Normal file

Binary file not shown.

BIN
static/WebTorrentFile.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
static/WebTorrentFile.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 140 KiB

39
static/about.html Normal file
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
static/appdmg@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
static/bigBuckBunny.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 KiB

BIN
static/bigBuckBunny.torrent Normal file

Binary file not shown.

BIN
static/cosmosLaundromat.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 KiB

Binary file not shown.

View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

1574
static/main.css Normal file

File diff suppressed because it is too large Load Diff

13
static/main.html Normal file
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

BIN
static/sintel.torrent Normal file

Binary file not shown.

BIN
static/sound/add.wav Normal file

Binary file not shown.

BIN
static/sound/delete.wav Normal file

Binary file not shown.

BIN
static/sound/disable.wav Normal file

Binary file not shown.

BIN
static/sound/done.wav Normal file

Binary file not shown.

BIN
static/sound/enable.wav Normal file

Binary file not shown.

BIN
static/sound/error.wav Normal file

Binary file not shown.

BIN
static/sound/play.wav Normal file

Binary file not shown.

BIN
static/sound/startup.wav Normal file

Binary file not shown.

BIN
static/tearsOfSteel.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

BIN
static/tearsOfSteel.torrent Normal file

Binary file not shown.

25
static/webtorrent.html Normal file
View 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

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

BIN
static/wiredCd.torrent Normal file

Binary file not shown.