Update README.md

This commit is contained in:
kPherox 2019-04-22 13:35:19 +09:00
parent 28ccb6cca4
commit 40a814e9d8
No known key found for this signature in database
GPG Key ID: C04751C2BFA2F62D
5 changed files with 26 additions and 16 deletions

View File

@ -1,6 +1,9 @@
# TheDesk-Vue
Vueで[TheDesk][cutls/TheDesk]を書き直してみたもの。ライセンスは元のパッケージのライセンスを継承して[GPL v3](LICENSE)とします
## Version
現在は本家バージョン18.3.xの仕様をベースに開発しています
## Development
開発時の起動
```sh

View File

@ -65,11 +65,23 @@
"bugs": {
"url": "https://github.com/kPherox/TheDesk-Vue/issues"
},
"contributors": [{
"name": "kPherox",
"url": "https://www.kr-kp.com/",
"email": "admin@mail.kr-kp.com"
}],
"contributors": [
{
"name": "とねぢ",
"url": "https://minohdon.jp/@toneji",
"email": "solfa.tono@gmail.com"
},
{
"name": "ぽぷんじゃ",
"url": "https://popon.pptdn.jp/@popn_ja",
"email": "popn.ja@gmail.com"
},
{
"name": "kPherox",
"url": "https://pawoo.net/@kPherox",
"email": "admin@mail.kr-kp.com"
}
],
"homepage": "https://github.com/kPherox/TheDesk-Vue",
"license": "GPL-3.0",
"productName": "TheDesk Vue",

View File

@ -40,7 +40,7 @@ export default class Application {
try {
await installVueDevtools()
} catch (e) {
//console.error('Vue Devtools failed to install:', e.toString())
console.error('Vue Devtools failed to install:', e.toString())
}
}
if (!process.env.WEBPACK_DEV_SERVER_URL) createProtocol('app')

View File

@ -96,7 +96,7 @@ export default class Window {
shell.openExternal(url, {
activate: false
}, (err) => {
//if (err) console.log(err)
if (err) console.log(err)
})
}
win.webContents.on('will-navigate', openUrl)

View File

@ -1,10 +1,5 @@
const {
productName
} = require("./package.json")
const {
appId,
copyright
} = require("./info.json")
const { productName } = require("./package.json");
const { appId, copyright } = require("./info.json");
module.exports = {
pages: {
@ -15,7 +10,7 @@ module.exports = {
},
about: {
entry: 'src/entries/about.ts',
title: `About`,
title: 'About',
},
},
css: {
@ -62,4 +57,4 @@ module.exports = {
},
},
},
}
};