File tree 3 files changed +12
-8
lines changed
3 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ artifactName: "${name}-${version}-${os}-${arch}.${ext}"
4
4
directories :
5
5
output : release-builds
6
6
7
+ # OS specific settings
7
8
mac :
8
9
icon : " icon/icon.ico"
9
10
target :
16
17
icon : " icon/icon.png"
17
18
target :
18
19
- target : msi
19
- oneClick : false
20
20
arch : [x64]
21
21
- target : zip
22
22
arch : [x64]
30
30
arch : [x64, arm64]
31
31
- target : zip
32
32
arch : [x64, arm64]
33
+
34
+ # Target specific settings
35
+ msi :
36
+ oneClick : false
Original file line number Diff line number Diff line change @@ -92,16 +92,12 @@ export const setSidebarStatus = (status) => {
92
92
export const searchStreams = ( ) => {
93
93
let filteredStream = streams . value . filter ( ( stream ) => {
94
94
return (
95
- ( ( stream . name
96
- . toLowerCase ( )
97
- . includes ( search . value . streams . toLowerCase ( ) ) ||
95
+ ( stream . name . toLowerCase ( ) . includes ( search . value . streams . toLowerCase ( ) ) ||
98
96
stream . origin . address
99
97
. toLowerCase ( )
100
98
. includes ( search . value . streams . toLowerCase ( ) ) ||
101
99
stream . id . includes ( search . value . streams ) ) &&
102
- ( stream . isSupported || ! persistentData . value . settings . hideUnsupported )
103
- )
104
-
100
+ ( stream . isSupported || ! persistentData . value . settings . hideUnsupported )
105
101
) ;
106
102
} ) ;
107
103
Original file line number Diff line number Diff line change 89
89
</option >
90
90
</template >
91
91
</select >
92
- <small v-else class =" d-inline-flex px-2 py-1 fw-semibold text-danger-emphasis bg-danger-subtle border border-danger-subtle rounded-2" >{{ stream.unsupportedReason }}</small >
92
+ <small
93
+ v-else
94
+ class =" d-inline-flex px-2 py-1 fw-semibold text-danger-emphasis bg-danger-subtle border border-danger-subtle rounded-2"
95
+ >{{ stream.unsupportedReason }}</small
96
+ >
93
97
</td >
94
98
<td >
95
99
<button
You can’t perform that action at this time.
0 commit comments