Skip to content

Commit ee1fb8f

Browse files
committed
v0.8.16
1 parent 8bee55f commit ee1fb8f

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zy",
3-
"version": "0.8.10",
3+
"version": "0.8.16",
44
"author": "Hunlongyu",
55
"description": "ZY Player 资源播放器",
66
"private": true,

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ html,body{
101101
}
102102
#app{
103103
height: 100%;
104-
user-select: none;
105104
.Header{
106105
display: flex;
107106
justify-content: flex-end;
@@ -136,6 +135,7 @@ html,body{
136135
.Main{
137136
height: 100%;
138137
overflow: hidden;
138+
user-select: none;
139139
}
140140
}
141141
</style>

src/components/detail.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ export default Vue.extend({
7878
},
7979
created () {
8080
this.getDetailEvent()
81-
},
82-
mounted () {}
81+
}
8382
})
8483
</script>
8584
<style lang="scss">
8685
.detail{
8786
box-sizing: border-box;
8887
padding: 0 60px;
88+
user-select: auto;
8989
.detail-box{
9090
width: 100%;
9191
.box{

src/page/search.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ export default Vue.extend({
133133
this.video = e
134134
}
135135
}
136-
},
137-
created () {}
136+
}
138137
})
139138
</script>
140139
<style lang="scss" scoped>

vue.config.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,16 @@ module.exports = {
33
electronBuilder: {
44
builderOptions: {
55
win: {
6-
icon: './build/icons/icon.ico'
6+
icon: './build/icons/icon.ico',
7+
target: [
8+
{
9+
target: 'nsis',
10+
arch: [
11+
'ia32',
12+
'x64'
13+
]
14+
}
15+
]
716
},
817
productName: 'ZY Player',
918
publish: [{

0 commit comments

Comments
 (0)