@christianriedl/media 1.0.68 → 1.0.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@christianriedl/media",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.69",
|
|
4
4
|
"description": "RIC media interfaces",
|
|
5
5
|
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"author": "Christian Riedl",
|
|
19
19
|
"license": "ISC",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@christianriedl/utils": "^1.0.
|
|
21
|
+
"@christianriedl/utils": "^1.0.83",
|
|
22
22
|
"@christianriedl/rest": "^1.0.48",
|
|
23
23
|
"@christianriedl/epg": "^1.0.26"
|
|
24
24
|
},
|
|
@@ -144,8 +144,11 @@
|
|
|
144
144
|
}
|
|
145
145
|
else {
|
|
146
146
|
const msecDiff = new Date().getTime() - mouseDownTime;
|
|
147
|
-
if (msecDiff < 500)
|
|
148
|
-
|
|
147
|
+
if (msecDiff < 500) {
|
|
148
|
+
if (appState.device != EDevice.Windows && appState.device != EDevice.Mac) {
|
|
149
|
+
keyDialog.value = true;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
149
152
|
else
|
|
150
153
|
onKeyClick("KeyF");
|
|
151
154
|
mouseDownTime = 0;
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
-->
|
|
101
101
|
<template v-slot:append>
|
|
102
102
|
<v-list-item-avatar right>
|
|
103
|
-
<v-btn variant="text" color="grey lighten-1" icon="
|
|
103
|
+
<v-btn variant="text" color="grey lighten-1" icon="$info"></v-btn>
|
|
104
104
|
</v-list-item-avatar>
|
|
105
105
|
</template>
|
|
106
106
|
</v-list-item>
|