bfg-common 1.2.26 → 1.2.28
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/assets/localization/local_be.json +6 -2
- package/assets/localization/local_en.json +6 -2
- package/assets/localization/local_hy.json +6 -2
- package/assets/localization/local_kk.json +6 -2
- package/assets/localization/local_ru.json +6 -2
- package/assets/localization/local_zh.json +6 -2
- package/components/atoms/TheIcon2.vue +782 -0
- package/components/common/BadBrowser.vue +95 -0
- package/components/common/diagramMain/modals/config/portModal.ts +0 -1
- package/components/common/vm/actions/add/customizeHardware/vmoptions/bootOptions/BootOptions.vue +0 -1
- package/package.json +1 -1
- package/public/spice-console/process/inputprocess.js +1 -2
- package/public/spice-console/run.js +0 -1
- package/public/spice-console-minify/run.min.js +1 -1
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="bad-browser">
|
|
3
|
+
<div class="main-block">
|
|
4
|
+
<h1 class="title-block">
|
|
5
|
+
{{ localization.browserOutDate }}
|
|
6
|
+
</h1>
|
|
7
|
+
<p class="first description-text">
|
|
8
|
+
{{ firstDescriptionText }}
|
|
9
|
+
</p>
|
|
10
|
+
<div class="browsers-block">
|
|
11
|
+
<a href="https://www.google.com/chrome/" target="_blank">
|
|
12
|
+
<div class="browser-item">
|
|
13
|
+
<atoms-the-icon2 name="chrome" class="browser-icon" />
|
|
14
|
+
<p class="browser-name">Chrome</p>
|
|
15
|
+
</div>
|
|
16
|
+
</a>
|
|
17
|
+
<a href="https://www.mozilla.org/en-US/" target="_blank">
|
|
18
|
+
<div class="browser-item">
|
|
19
|
+
<atoms-the-icon2 name="firefox" class="browser-icon" />
|
|
20
|
+
<p class="browser-name">Firefox</p>
|
|
21
|
+
</div>
|
|
22
|
+
</a>
|
|
23
|
+
<a href="https://support.apple.com/downloads/safari" target="_blank">
|
|
24
|
+
<div class="browser-item">
|
|
25
|
+
<atoms-the-icon2 name="safari" class="browser-icon" />
|
|
26
|
+
<p class="browser-name">Safari</p>
|
|
27
|
+
</div>
|
|
28
|
+
</a>
|
|
29
|
+
<a href="https://www.microsoft.com/en-us/edge/download?form=MA13FJ" target="_blank">
|
|
30
|
+
<div class="browser-item">
|
|
31
|
+
<atoms-the-icon2 name="edge" class="browser-icon" />
|
|
32
|
+
<p class="browser-name">Edge</p>
|
|
33
|
+
</div>
|
|
34
|
+
</a>
|
|
35
|
+
</div>
|
|
36
|
+
<p>
|
|
37
|
+
{{ localization.browserOutDateDesc2 }}
|
|
38
|
+
<a href="#">{{ localization.browserOutDateDesc3 }}</a>
|
|
39
|
+
</p>
|
|
40
|
+
</div>
|
|
41
|
+
</div>
|
|
42
|
+
</template>
|
|
43
|
+
|
|
44
|
+
<script setup lang="ts">
|
|
45
|
+
import { UI_I_Localization } from '~/models/interfaces'
|
|
46
|
+
|
|
47
|
+
const props = defineProps<{
|
|
48
|
+
projectName: string
|
|
49
|
+
}>()
|
|
50
|
+
|
|
51
|
+
const localization = computed<UI_I_Localization>(() => useLocal())
|
|
52
|
+
|
|
53
|
+
const firstDescriptionText = computed<string>(() =>
|
|
54
|
+
localization.value.browserOutDateDesc.replace('{0}', props.projectName)
|
|
55
|
+
)
|
|
56
|
+
</script>
|
|
57
|
+
|
|
58
|
+
<style scoped lang="scss">
|
|
59
|
+
.bad-browser {
|
|
60
|
+
height: inherit;
|
|
61
|
+
display: flex;
|
|
62
|
+
justify-content: center;
|
|
63
|
+
align-items: center;
|
|
64
|
+
|
|
65
|
+
.main-block {
|
|
66
|
+
width: max-content;
|
|
67
|
+
padding: 20px 40px;
|
|
68
|
+
text-align: center;
|
|
69
|
+
|
|
70
|
+
.title-block {
|
|
71
|
+
font-size: 32px;
|
|
72
|
+
font-weight: 400;
|
|
73
|
+
}
|
|
74
|
+
.description-text {
|
|
75
|
+
&.first {
|
|
76
|
+
margin: 0 auto;
|
|
77
|
+
max-width: 400px;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.browsers-block {
|
|
81
|
+
margin: 20px 0;
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
gap: 40px;
|
|
86
|
+
|
|
87
|
+
.browser-item {
|
|
88
|
+
.browser-icon {
|
|
89
|
+
width: 60px;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
</style>
|
|
@@ -44,7 +44,6 @@ export const portViewSettingsFunc = (
|
|
|
44
44
|
(enabledServices += localization.nvmEOverTCP + '\n')
|
|
45
45
|
initialData.services?.nVMeOverRDMA &&
|
|
46
46
|
(enabledServices += localization.nvmEOverRDMA + '\n')
|
|
47
|
-
console.log(666, initialData.tcpConfig)
|
|
48
47
|
return [
|
|
49
48
|
{
|
|
50
49
|
title: localization.portProperties,
|
package/components/common/vm/actions/add/customizeHardware/vmoptions/bootOptions/BootOptions.vue
CHANGED
|
@@ -84,7 +84,6 @@ const onChangeBootOrder = (data: UI_T_ChangeBootOrder): void => {
|
|
|
84
84
|
watch(
|
|
85
85
|
[firmware, secureBoot, bootMenu, bootDelay],
|
|
86
86
|
() => {
|
|
87
|
-
console.log(firmware, secureBoot, bootMenu, bootDelay, 111);
|
|
88
87
|
emits('send-data', {
|
|
89
88
|
firmware: firmware.value,
|
|
90
89
|
boot_delay_ms: bootDelay.value,
|
package/package.json
CHANGED
|
@@ -119,7 +119,6 @@ wdi.InputProcess = $.spcExtend(wdi.EventObject.prototype, {
|
|
|
119
119
|
this.spiceConnection.send(numLockPacket)
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
console.log(1)
|
|
123
122
|
for (i = 0; i < scanCodes.length; i++) {
|
|
124
123
|
packet = new wdi.SpiceMessage({
|
|
125
124
|
messageType: wdi.SpiceVars.SPICE_MSGC_INPUTS_KEY_DOWN,
|
|
@@ -168,7 +167,7 @@ wdi.InputProcess = $.spcExtend(wdi.EventObject.prototype, {
|
|
|
168
167
|
if (scanCodes[0] && scanCodes[0][0] === 142) {
|
|
169
168
|
this.shiftPressed = false
|
|
170
169
|
}
|
|
171
|
-
|
|
170
|
+
|
|
172
171
|
for (i = 0; i < scanCodes.length; i++) {
|
|
173
172
|
packet = new wdi.SpiceMessage({
|
|
174
173
|
messageType: wdi.SpiceVars.SPICE_MSGC_INPUTS_KEY_UP,
|