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

View File

@ -65,11 +65,23 @@
"bugs": { "bugs": {
"url": "https://github.com/kPherox/TheDesk-Vue/issues" "url": "https://github.com/kPherox/TheDesk-Vue/issues"
}, },
"contributors": [{ "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", "name": "kPherox",
"url": "https://www.kr-kp.com/", "url": "https://pawoo.net/@kPherox",
"email": "admin@mail.kr-kp.com" "email": "admin@mail.kr-kp.com"
}], }
],
"homepage": "https://github.com/kPherox/TheDesk-Vue", "homepage": "https://github.com/kPherox/TheDesk-Vue",
"license": "GPL-3.0", "license": "GPL-3.0",
"productName": "TheDesk Vue", "productName": "TheDesk Vue",

View File

@ -40,7 +40,7 @@ export default class Application {
try { try {
await installVueDevtools() await installVueDevtools()
} catch (e) { } 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') if (!process.env.WEBPACK_DEV_SERVER_URL) createProtocol('app')

View File

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

View File

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