Compare commits
10 Commits
v0.17.1
...
demoneaux/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e14005abab | ||
|
|
382ea3d965 | ||
|
|
1b466c64e1 | ||
|
|
b0b6069fe2 | ||
|
|
994aed9af7 | ||
|
|
852fc86cbd | ||
|
|
8801a87a58 | ||
|
|
1e10f0083c | ||
|
|
bb40f0f11a | ||
|
|
78d7243a08 |
@@ -134,7 +134,7 @@ const win32 = {
|
||||
platform: 'win32',
|
||||
|
||||
// Build ia32 and x64 binaries.
|
||||
arch: 'all',
|
||||
arch: ['ia32', 'x64'],
|
||||
|
||||
// Object hash of application metadata to embed into the executable (Windows only)
|
||||
win32metadata: {
|
||||
@@ -168,7 +168,7 @@ const linux = {
|
||||
platform: 'linux',
|
||||
|
||||
// Build ia32 and x64 binaries.
|
||||
arch: 'all'
|
||||
arch: ['ia32', 'x64']
|
||||
|
||||
// Note: Application icon for Linux is specified via the BrowserWindow `icon` option.
|
||||
}
|
||||
|
||||
@@ -106,6 +106,6 @@
|
||||
"test": "standard && depcheck --ignores=buble,lodash.merge,nodemon,gh-release --ignore-dirs=build,dist && node ./bin/extra-lint.js",
|
||||
"test-integration": "npm run build && node ./test",
|
||||
"update-authors": "./bin/update-authors.sh",
|
||||
"watch": "nodemon --exec \"npm run start\" --ext js,pug,css --ignore build/ --ignore dist/"
|
||||
"watch": "nodemon --exec \"npm run start\" --ext js,css --ignore build/ --ignore dist/"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
testID: 'wired',
|
||||
name: 'The WIRED CD - Rip. Sample. Mash. Share.',
|
||||
name: 'The WIRED CD - Rip. Sample. Mash. Share',
|
||||
posterFileName: 'wiredCd.jpg',
|
||||
torrentFileName: 'wiredCd.torrent'
|
||||
}
|
||||
|
||||
@@ -15,6 +15,7 @@ const main = module.exports = {
|
||||
}
|
||||
|
||||
const electron = require('electron')
|
||||
const debounce = require('debounce')
|
||||
|
||||
const app = electron.app
|
||||
|
||||
@@ -83,13 +84,13 @@ function init (state, options) {
|
||||
win.setMenuBarVisibility(true)
|
||||
})
|
||||
|
||||
win.on('move', function (e) {
|
||||
win.on('move', debounce(function (e) {
|
||||
send('windowBoundsChanged', e.sender.getBounds())
|
||||
})
|
||||
}, 1000))
|
||||
|
||||
win.on('resize', function (e) {
|
||||
win.on('resize', debounce(function (e) {
|
||||
send('windowBoundsChanged', e.sender.getBounds())
|
||||
})
|
||||
}, 1000))
|
||||
|
||||
win.on('close', function (e) {
|
||||
if (process.platform !== 'darwin') {
|
||||
|
||||
@@ -268,8 +268,16 @@ module.exports = class PlaybackController {
|
||||
state.playing.jumpToTime = jumpToTime
|
||||
|
||||
// if it's audio, parse out the metadata (artist, title, etc)
|
||||
if (state.playing.type === 'audio' && !fileSummary.audioInfo) {
|
||||
ipcRenderer.send('wt-get-audio-metadata', torrentSummary.infoHash, index)
|
||||
if (torrentSummary.status === 'paused') {
|
||||
ipcRenderer.once('wt-ready-' + torrentSummary.infoHash, getAudioMetadata)
|
||||
} else {
|
||||
getAudioMetadata()
|
||||
}
|
||||
|
||||
function getAudioMetadata () {
|
||||
if (state.playing.type === 'audio' && !fileSummary.audioInfo) {
|
||||
ipcRenderer.send('wt-get-audio-metadata', torrentSummary.infoHash, index)
|
||||
}
|
||||
}
|
||||
|
||||
// if it's video, check for subtitles files that are done downloading
|
||||
|
||||
@@ -182,47 +182,51 @@ module.exports = class TorrentListController {
|
||||
|
||||
openTorrentContextMenu (infoHash) {
|
||||
const torrentSummary = TorrentSummary.getByKey(this.state, infoHash)
|
||||
const menu = new electron.remote.Menu()
|
||||
const torrentStarted = !!(torrentSummary.files && torrentSummary.progress)
|
||||
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
label: 'Remove From List',
|
||||
click: () => dispatch('confirmDeleteTorrent', torrentSummary.infoHash, false)
|
||||
}))
|
||||
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
label: 'Remove Data File',
|
||||
click: () => dispatch('confirmDeleteTorrent', torrentSummary.infoHash, true)
|
||||
}))
|
||||
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
type: 'separator'
|
||||
}))
|
||||
|
||||
if (torrentSummary.files) {
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
label: process.platform === 'darwin' ? 'Show in Finder' : 'Show in Folder',
|
||||
click: () => showItemInFolder(torrentSummary)
|
||||
}))
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
const menuTemplate = [
|
||||
{
|
||||
label: 'Remove From List',
|
||||
click: () => dispatch('confirmDeleteTorrent', torrentSummary.infoHash, false)
|
||||
},
|
||||
{
|
||||
label: 'Remove Data File',
|
||||
enabled: torrentStarted,
|
||||
click: () => dispatch('confirmDeleteTorrent', torrentSummary.infoHash, true)
|
||||
},
|
||||
{
|
||||
type: 'separator'
|
||||
}))
|
||||
}
|
||||
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
label: 'Copy Magnet Link to Clipboard',
|
||||
click: () => electron.clipboard.writeText(torrentSummary.magnetURI)
|
||||
}))
|
||||
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
label: 'Copy Instant.io Link to Clipboard',
|
||||
click: () => electron.clipboard.writeText(`https://instant.io/#${torrentSummary.infoHash}`)
|
||||
}))
|
||||
|
||||
menu.append(new electron.remote.MenuItem({
|
||||
label: 'Save Torrent File As...',
|
||||
click: () => dispatch('saveTorrentFileAs', torrentSummary.torrentKey)
|
||||
}))
|
||||
},
|
||||
{
|
||||
label: process.platform === 'darwin' ? 'Show in Finder' : 'Show in Folder',
|
||||
enabled: torrentStarted,
|
||||
click: () => showItemInFolder(torrentSummary)
|
||||
},
|
||||
{
|
||||
type: 'separator'
|
||||
},
|
||||
{
|
||||
label: 'Copy Magnet Link to Clipboard',
|
||||
click: () => electron.clipboard.writeText(torrentSummary.magnetURI)
|
||||
},
|
||||
{
|
||||
label: 'Copy Instant.io Link to Clipboard',
|
||||
click: () => electron.clipboard.writeText(`https://instant.io/#${torrentSummary.infoHash}`)
|
||||
},
|
||||
{
|
||||
label: 'Save Torrent File As...',
|
||||
click: () => dispatch('saveTorrentFileAs', torrentSummary.torrentKey)
|
||||
},
|
||||
{
|
||||
type: 'separator'
|
||||
},
|
||||
{
|
||||
label: 'Paste Torrent Address',
|
||||
role: 'paste'
|
||||
}
|
||||
]
|
||||
|
||||
const menu = electron.remote.Menu.buildFromTemplate(menuTemplate)
|
||||
menu.popup(electron.remote.getCurrentWindow())
|
||||
}
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ module.exports = {
|
||||
}
|
||||
|
||||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
const semver = require('semver')
|
||||
|
||||
const config = require('../../config')
|
||||
@@ -18,30 +19,15 @@ function run (state) {
|
||||
}
|
||||
|
||||
const version = state.saved.version
|
||||
const saved = state.saved
|
||||
|
||||
if (semver.lt(version, '0.7.0')) {
|
||||
migrate_0_7_0(state.saved)
|
||||
}
|
||||
|
||||
if (semver.lt(version, '0.7.2')) {
|
||||
migrate_0_7_2(state.saved)
|
||||
}
|
||||
|
||||
if (semver.lt(version, '0.11.0')) {
|
||||
migrate_0_11_0(state.saved)
|
||||
}
|
||||
|
||||
if (semver.lt(version, '0.12.0')) {
|
||||
migrate_0_12_0(state.saved)
|
||||
}
|
||||
|
||||
if (semver.lt(version, '0.14.0')) {
|
||||
migrate_0_14_0(state.saved)
|
||||
}
|
||||
|
||||
if (semver.lt(version, '0.17.0')) {
|
||||
migrate_0_17_0(state.saved)
|
||||
}
|
||||
if (semver.lt(version, '0.7.0')) migrate_0_7_0(saved)
|
||||
if (semver.lt(version, '0.7.2')) migrate_0_7_2(saved)
|
||||
if (semver.lt(version, '0.11.0')) migrate_0_11_0(saved)
|
||||
if (semver.lt(version, '0.12.0')) migrate_0_12_0(saved)
|
||||
if (semver.lt(version, '0.14.0')) migrate_0_14_0(saved)
|
||||
if (semver.lt(version, '0.17.0')) migrate_0_17_0(saved)
|
||||
if (semver.lt(version, '0.17.2')) migrate_0_17_2(saved)
|
||||
|
||||
// Config is now on the new version
|
||||
state.saved.version = config.APP_VERSION
|
||||
@@ -163,3 +149,60 @@ function migrate_0_17_0 (saved) {
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function migrate_0_17_2 (saved) {
|
||||
// Remove the trailing dot (.) from the Wired CD torrent name, since
|
||||
// folders/files that end in a trailing dot (.) or space are not deletable from
|
||||
// Windows Explorer. See: https://github.com/feross/webtorrent-desktop/issues/905
|
||||
|
||||
const cpFile = require('cp-file')
|
||||
const rimraf = require('rimraf')
|
||||
|
||||
const OLD_NAME = 'The WIRED CD - Rip. Sample. Mash. Share.'
|
||||
const NEW_NAME = 'The WIRED CD - Rip. Sample. Mash. Share'
|
||||
|
||||
const OLD_HASH = '3ba219a8634bf7bae3d848192b2da75ae995589d'
|
||||
const NEW_HASH = 'a88fda5954e89178c372716a6a78b8180ed4dad3'
|
||||
|
||||
const ts = saved.torrents.find((ts) => {
|
||||
return ts.infoHash === OLD_HASH
|
||||
})
|
||||
|
||||
if (!ts) return // Wired CD torrent does not exist
|
||||
|
||||
// New versions of WebTorrent ship with a fixed torrent file. Let's fix up the
|
||||
// name in existing versions of WebTorrent.
|
||||
ts.name = ts.displayName = NEW_NAME
|
||||
ts.files.forEach((file) => {
|
||||
file.path = file.path.replace(OLD_NAME, NEW_NAME)
|
||||
})
|
||||
|
||||
// Changing the torrent name causes the info hash to change
|
||||
ts.infoHash = NEW_HASH
|
||||
ts.magnetURI = ts.magnetURI.replace(OLD_HASH, NEW_HASH)
|
||||
|
||||
try {
|
||||
fs.renameSync(
|
||||
path.join(config.POSTER_PATH, ts.posterFileName),
|
||||
path.join(config.POSTER_PATH, NEW_HASH + '.jpg')
|
||||
)
|
||||
} catch (err) {}
|
||||
ts.posterFileName = NEW_HASH + '.jpg'
|
||||
|
||||
rimraf.sync(path.join(config.TORRENT_PATH, ts.torrentFileName))
|
||||
cpFile.sync(
|
||||
path.join(config.STATIC_PATH, 'wiredCd.torrent'),
|
||||
path.join(config.TORRENT_PATH, NEW_HASH + '.torrent')
|
||||
)
|
||||
ts.torrentFileName = NEW_HASH + '.torrent'
|
||||
|
||||
if (ts.path) {
|
||||
// If torrent folder already exists on disk, try to rename it
|
||||
try {
|
||||
fs.renameSync(
|
||||
path.join(ts.path, OLD_NAME),
|
||||
path.join(ts.path, NEW_NAME)
|
||||
)
|
||||
} catch (err) {}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -125,8 +125,6 @@ function startTorrenting (torrentKey, torrentID, path, fileModtimes, selections)
|
||||
|
||||
// Only download the files the user wants, not necessarily all files
|
||||
torrent.once('ready', () => selectFiles(torrent, selections))
|
||||
|
||||
return torrent
|
||||
}
|
||||
|
||||
function stopTorrenting (infoHash) {
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1010 KiB After Width: | Height: | Size: 1011 KiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 145 KiB |
|
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 52 KiB |
|
Before Width: | Height: | Size: 302 KiB After Width: | Height: | Size: 302 KiB |
|
Before Width: | Height: | Size: 698 KiB After Width: | Height: | Size: 698 KiB |
|
Before Width: | Height: | Size: 478 KiB After Width: | Height: | Size: 479 KiB |
|
Before Width: | Height: | Size: 480 KiB After Width: | Height: | Size: 480 KiB |
|
Before Width: | Height: | Size: 480 KiB After Width: | Height: | Size: 480 KiB |
|
Before Width: | Height: | Size: 480 KiB After Width: | Height: | Size: 480 KiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 481 KiB After Width: | Height: | Size: 481 KiB |
|
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 627 KiB After Width: | Height: | Size: 627 KiB |
|
Before Width: | Height: | Size: 843 KiB After Width: | Height: | Size: 844 KiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1014 KiB After Width: | Height: | Size: 1014 KiB |
|
Before Width: | Height: | Size: 549 KiB After Width: | Height: | Size: 549 KiB |
|
Before Width: | Height: | Size: 698 KiB After Width: | Height: | Size: 698 KiB |
|
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1024 KiB |
|
Before Width: | Height: | Size: 1014 KiB After Width: | Height: | Size: 1014 KiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 1015 KiB After Width: | Height: | Size: 1016 KiB |