Merge pull request #13 from kaias1jp/nowplaying-node-linux-disabled

Nowplaying node linux disabled
This commit is contained in:
Cutls 2019-01-29 00:56:05 +09:00 committed by GitHub
commit 7da4cd53d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 9 deletions

View File

@ -12,7 +12,10 @@ const fm = require('font-manager');
const Menu=electron.Menu const Menu=electron.Menu
var updatewin=null; var updatewin=null;
const join = require('path').join; const join = require('path').join;
const {NowPlaying,PlayerName} = require("nowplaying-node"); // linuxの時は定義しない
if (process.platform!='linux') {
const {NowPlaying,PlayerName} = require("nowplaying-node");
}
// アプリケーションをコントロールするモジュール // アプリケーションをコントロールするモジュール
const app = electron.app; const app = electron.app;
// ウィンドウを作成するモジュール // ウィンドウを作成するモジュール
@ -688,4 +691,4 @@ object_array_sort(fonts, 'family', 'asc', function(fonts_sorted){
}); });
app.setAsDefaultProtocolClient('thedesk') app.setAsDefaultProtocolClient('thedesk')

View File

@ -34,14 +34,15 @@
], ],
"license": "GPL-3.0", "license": "GPL-3.0",
"dependencies": { "dependencies": {
"electron": "^3.0.10",
"electron-dl": "^1.11.0", "electron-dl": "^1.11.0",
"font-manager": "^0.3.0", "font-manager": "^0.3.0",
"jimp": "^0.2.28", "jimp": "^0.2.28",
"node-notifier": "^5.2.1", "node-notifier": "^5.2.1",
"nowplaying-node": "^0.1.3",
"sumchecker": "^2.0.2" "sumchecker": "^2.0.2"
}, },
"optionalDependencies": { "optionalDependencies": {
"nowplaying-node": "^0.1.3",
"itunes-nowplaying-mac": "^0.2.3" "itunes-nowplaying-mac": "^0.2.3"
}, },
"build": { "build": {
@ -57,10 +58,10 @@
"portable" "portable"
] ]
}, },
"nsis":{ "nsis": {
"oneClick":false, "oneClick": false,
"allowToChangeInstallationDirectory":true, "allowToChangeInstallationDirectory": true,
"artifactName":"TheDesk-setup.${ext}" "artifactName": "TheDesk-setup.${ext}"
}, },
"linux": { "linux": {
"icon": "build/icons", "icon": "build/icons",
@ -78,7 +79,8 @@
"electronVersion": "3.0.10" "electronVersion": "3.0.10"
}, },
"devDependencies": { "devDependencies": {
"electron-rebuild": "^1.8.2", "electron-packager": "^13.0.1",
"electron-prebuilt": "^1.4.13" "electron-prebuilt": "^1.4.13",
"electron-rebuild": "^1.8.2"
} }
} }