BIN
WebTorrent.icns
Normal file
BIN
WebTorrent.icns
Normal file
Binary file not shown.
BIN
WebTorrent.ico
Normal file
BIN
WebTorrent.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 361 KiB |
BIN
WebTorrent.png
Normal file
BIN
WebTorrent.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.9 KiB |
@@ -56,6 +56,9 @@ var darwin = {
|
|||||||
|
|
||||||
// The bundle identifier to use in the application helper's plist (OS X only).
|
// The bundle identifier to use in the application helper's plist (OS X only).
|
||||||
'helper-bundle-id': 'io.webtorrent.app.helper',
|
'helper-bundle-id': 'io.webtorrent.app.helper',
|
||||||
|
|
||||||
|
// Application icon.
|
||||||
|
icon: path.join(__dirname, '..', 'WebTorrent.icns')
|
||||||
}
|
}
|
||||||
|
|
||||||
var win32 = {
|
var win32 = {
|
||||||
@@ -87,10 +90,15 @@ var win32 = {
|
|||||||
// the original filename, without extension. This string is required.
|
// the original filename, without extension. This string is required.
|
||||||
InternalName: 'WebTorrent'
|
InternalName: 'WebTorrent'
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// Application icon.
|
||||||
|
icon: path.join(__dirname, '..', 'WebTorrent.ico')
|
||||||
}
|
}
|
||||||
|
|
||||||
var linux = {
|
var linux = {
|
||||||
platform: 'linux'
|
platform: 'linux'
|
||||||
|
|
||||||
|
// Note: Application icon for Linux is specified via the BrowserWindow `icon` option.
|
||||||
}
|
}
|
||||||
|
|
||||||
electronPackager(Object.assign({}, all, darwin), done)
|
electronPackager(Object.assign({}, all, darwin), done)
|
||||||
|
|||||||
19
config.js
19
config.js
@@ -2,13 +2,14 @@ var path = require('path')
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
APP_NAME: 'WebTorrent',
|
APP_NAME: 'WebTorrent',
|
||||||
INDEX: 'file://' + path.resolve(__dirname, 'renderer', 'index.html'),
|
APP_ICON: path.join(__dirname, 'WebTorrent.png'),
|
||||||
SOUND_ADD: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'add.wav'),
|
INDEX: 'file://' + path.join(__dirname, 'renderer', 'index.html'),
|
||||||
SOUND_DELETE: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'delete.wav'),
|
SOUND_ADD: 'file://' + path.join(__dirname, 'resources', 'sound', 'add.wav'),
|
||||||
SOUND_DISABLE: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'disable.wav'),
|
SOUND_DELETE: 'file://' + path.join(__dirname, 'resources', 'sound', 'delete.wav'),
|
||||||
SOUND_DONE: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'done.wav'),
|
SOUND_DISABLE: 'file://' + path.join(__dirname, 'resources', 'sound', 'disable.wav'),
|
||||||
SOUND_ENABLE: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'enable.wav'),
|
SOUND_DONE: 'file://' + path.join(__dirname, 'resources', 'sound', 'done.wav'),
|
||||||
SOUND_ERROR: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'error.wav'),
|
SOUND_ENABLE: 'file://' + path.join(__dirname, 'resources', 'sound', 'enable.wav'),
|
||||||
SOUND_PLAY: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'play.wav'),
|
SOUND_ERROR: 'file://' + path.join(__dirname, 'resources', 'sound', 'error.wav'),
|
||||||
SOUND_STARTUP: 'file://' + path.resolve(__dirname, 'resources', 'sound', 'startup.wav')
|
SOUND_PLAY: 'file://' + path.join(__dirname, 'resources', 'sound', 'play.wav'),
|
||||||
|
SOUND_STARTUP: 'file://' + path.join(__dirname, 'resources', 'sound', 'startup.wav')
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ function createMainWindow (menu) {
|
|||||||
autoHideMenuBar: true, // Hide top menu bar unless Alt key is pressed (Windows, Linux)
|
autoHideMenuBar: true, // Hide top menu bar unless Alt key is pressed (Windows, Linux)
|
||||||
backgroundColor: '#282828',
|
backgroundColor: '#282828',
|
||||||
darkTheme: true, // Forces dark theme (GTK+3 only)
|
darkTheme: true, // Forces dark theme (GTK+3 only)
|
||||||
|
icon: config.APP_ICON,
|
||||||
minWidth: 375,
|
minWidth: 375,
|
||||||
minHeight: 38 + (120 * 2), // header height + 2 torrents
|
minHeight: 38 + (120 * 2), // header height + 2 torrents
|
||||||
show: false, // Hide window until DOM finishes loading
|
show: false, // Hide window until DOM finishes loading
|
||||||
|
|||||||
Reference in New Issue
Block a user