Compare commits

...

2 Commits

Author SHA1 Message Date
hunlongyu
d22d52a317 🍞 修复问题 2020-04-28 11:38:24 +08:00
hunlongyu
c936e8479a 🍗 发布内测公告 2020-04-28 11:35:10 +08:00
5 changed files with 13 additions and 7 deletions

View File

@@ -15,13 +15,12 @@
### 新版
新版本 **v1.x** 紧张开发中预计5月初上线。
新版本: v0.9.9 已开发完, 现进行内测. [内侧公告](https://github.com/Hunlongyu/ZY-Player/issues/24)
[点击这里可以查看开发计划](https://github.com/Hunlongyu/ZY-Player/projects/3).
大家有什么新的需求建议欢迎踊跃提出[点击这里提意见](https://github.com/Hunlongyu/ZY-Player/issues/14).
## v0.9.1 版本:
#### 下载 (目前最新版: v0.9.1):

View File

@@ -19,7 +19,7 @@ protocol.registerSchemesAsPrivileged([{ scheme: 'app', privileges: { secure: tru
function createWindow () {
win = new BrowserWindow({
width: 1680,
width: 1080,
height: 720,
frame: false,
resizable: true,

View File

@@ -2,7 +2,7 @@
<div class="setting">
<div class="setting-box zy-scroll" v-if="show.setting">
<div class="logo"><img src="@/assets/image/logo.png"></div>
<div class="info"><a href="https://github.com/Hunlongyu/ZY-Player">{{$t('website')}}</a><a href="https://github.com/Hunlongyu/ZY-Player/issues">{{$t('issues')}}</a></div>
<div class="info"><a href="https://github.com/Hunlongyu/ZY-Player">{{$t('website')}}</a><a href="https://github.com/Hunlongyu/ZY-Player/issues/24">{{$t('issues')}}</a></div>
<div class="change">
<div class="zy-select" @mouseleave="show.language = false">
<div class="vs-placeholder" @click="show.language = true">{{$t('language')}}</div>

View File

@@ -9,7 +9,7 @@ setting.find().then(res => {
if (!cloud) {
macadress.one((err, mac) => {
if (err) {
console.log(err)
return false
}
const system = os.hostname() + ' ' + os.type() + ' ' + os.arch()
AV.init({

View File

@@ -5,7 +5,14 @@ module.exports = {
},
pluginOptions: {
electronBuilder: {
nodeIntegration: true
nodeIntegration: true,
builderOptions: {
nsis: {
oneClick: false,
allowToChangeInstallationDirectory: true
},
productName: 'ZY Player'
}
}
}
}