From f21d7dd732ec492270095f8d7f574dbcdbecb53d Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Thu, 10 Mar 2016 19:11:49 -0800 Subject: [PATCH] Move webtorrent icons into static/ --- README.md | 2 +- bin/package.js | 4 ++-- config.js | 2 +- WebTorrent.icns => static/WebTorrent.icns | Bin WebTorrent.ico => static/WebTorrent.ico | Bin WebTorrent.png => static/WebTorrent.png | Bin 6 files changed, 4 insertions(+), 4 deletions(-) rename WebTorrent.icns => static/WebTorrent.icns (100%) rename WebTorrent.ico => static/WebTorrent.ico (100%) rename WebTorrent.png => static/WebTorrent.png (100%) diff --git a/README.md b/README.md index 2a892ffb..edfdc20a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -#   WebTorrent.app +#   WebTorrent.app [![Gitter][webtorrent-gitter-image]][webtorrent-gitter-url] [![Travis Build][webtorrent-app-travis-image]][webtorrent-app-travis-url] diff --git a/bin/package.js b/bin/package.js index 53aa9b05..ae40b006 100755 --- a/bin/package.js +++ b/bin/package.js @@ -66,7 +66,7 @@ var darwin = { 'helper-bundle-id': 'io.webtorrent.app.helper', // Application icon. - icon: path.join(__dirname, '..', 'WebTorrent.icns') + icon: path.join(__dirname, '..', 'static', 'WebTorrent.icns') } var win32 = { @@ -100,7 +100,7 @@ var win32 = { }, // Application icon. - icon: path.join(__dirname, '..', 'WebTorrent.ico') + icon: path.join(__dirname, '..', 'static', 'WebTorrent.ico') } var linux = { diff --git a/config.js b/config.js index 39ac4c2a..311e0e90 100644 --- a/config.js +++ b/config.js @@ -2,7 +2,7 @@ var path = require('path') module.exports = { 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'), SOUND_ADD: 'file://' + path.join(__dirname, 'static', 'sound', 'add.wav'), SOUND_DELETE: 'file://' + path.join(__dirname, 'static', 'sound', 'delete.wav'), diff --git a/WebTorrent.icns b/static/WebTorrent.icns similarity index 100% rename from WebTorrent.icns rename to static/WebTorrent.icns diff --git a/WebTorrent.ico b/static/WebTorrent.ico similarity index 100% rename from WebTorrent.ico rename to static/WebTorrent.ico diff --git a/WebTorrent.png b/static/WebTorrent.png similarity index 100% rename from WebTorrent.png rename to static/WebTorrent.png