Move webtorrent icons into static/

This commit is contained in:
Feross Aboukhadijeh
2016-03-10 19:11:49 -08:00
parent d90cede3bd
commit f21d7dd732
6 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# <img src="WebTorrent.png" width="35">&nbsp; WebTorrent.app # <img src="static/WebTorrent.png" width="35">&nbsp; WebTorrent.app
[![Gitter][webtorrent-gitter-image]][webtorrent-gitter-url] [![Gitter][webtorrent-gitter-image]][webtorrent-gitter-url]
[![Travis Build][webtorrent-app-travis-image]][webtorrent-app-travis-url] [![Travis Build][webtorrent-app-travis-image]][webtorrent-app-travis-url]

View File

@@ -66,7 +66,7 @@ var darwin = {
'helper-bundle-id': 'io.webtorrent.app.helper', 'helper-bundle-id': 'io.webtorrent.app.helper',
// Application icon. // Application icon.
icon: path.join(__dirname, '..', 'WebTorrent.icns') icon: path.join(__dirname, '..', 'static', 'WebTorrent.icns')
} }
var win32 = { var win32 = {
@@ -100,7 +100,7 @@ var win32 = {
}, },
// Application icon. // Application icon.
icon: path.join(__dirname, '..', 'WebTorrent.ico') icon: path.join(__dirname, '..', 'static', 'WebTorrent.ico')
} }
var linux = { var linux = {

View File

@@ -2,7 +2,7 @@ var path = require('path')
module.exports = { module.exports = {
APP_NAME: 'WebTorrent', APP_NAME: 'WebTorrent',
APP_ICON: path.join(__dirname, 'WebTorrent.png'), APP_ICON: path.join(__dirname, 'static', 'WebTorrent.png'),
INDEX: 'file://' + path.join(__dirname, 'renderer', 'index.html'), INDEX: 'file://' + path.join(__dirname, 'renderer', 'index.html'),
SOUND_ADD: 'file://' + path.join(__dirname, 'static', 'sound', 'add.wav'), SOUND_ADD: 'file://' + path.join(__dirname, 'static', 'sound', 'add.wav'),
SOUND_DELETE: 'file://' + path.join(__dirname, 'static', 'sound', 'delete.wav'), SOUND_DELETE: 'file://' + path.join(__dirname, 'static', 'sound', 'delete.wav'),

View File

Before

Width:  |  Height:  |  Size: 361 KiB

After

Width:  |  Height:  |  Size: 361 KiB

View File

Before

Width:  |  Height:  |  Size: 8.9 KiB

After

Width:  |  Height:  |  Size: 8.9 KiB