@aiot-toolkit/emulator 2.0.4-beta.6 → 2.0.4-beta.7
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/lib/emulatorutil/constants.js +8 -11
- package/lib/instance/vela5.d.ts +1 -0
- package/lib/instance/vela5.js +1 -0
- package/lib/vvd/index.d.ts +1 -0
- package/lib/vvd/index.js +3 -0
- package/package.json +3 -3
|
@@ -60,17 +60,14 @@ const VelaImageVersionList = exports.VelaImageVersionList = [{
|
|
|
60
60
|
time: '20250114',
|
|
61
61
|
hide: false,
|
|
62
62
|
icon: ''
|
|
63
|
-
},
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
// icon: ''
|
|
72
|
-
// },
|
|
73
|
-
{
|
|
63
|
+
}, {
|
|
64
|
+
label: 'vela-watch-5.0',
|
|
65
|
+
description: '适用于手表/手环的,不带表盘的 vela 5.0 镜像,可自定义模拟器尺寸',
|
|
66
|
+
value: _Vvd.VelaImageType.VELA_WATCH_5,
|
|
67
|
+
time: '20250213',
|
|
68
|
+
hide: false,
|
|
69
|
+
icon: ''
|
|
70
|
+
}, {
|
|
74
71
|
label: 'vela-miwear-watch-4.0',
|
|
75
72
|
description: '原 vela-release-4.0 版本,适用于手表/手环的,带表盘的 vela 4.0 镜像,不可自定义模拟器尺寸',
|
|
76
73
|
value: _Vvd.VelaImageType.REL,
|
package/lib/instance/vela5.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { VelaImageType } from '../typing/Vvd';
|
|
|
2
2
|
import MiwearInstance from './miwear';
|
|
3
3
|
export declare class Vela5Instance extends MiwearInstance {
|
|
4
4
|
static emulatorStartedFlag: RegExp;
|
|
5
|
+
static appStartedFlag: RegExp;
|
|
5
6
|
imageType: VelaImageType;
|
|
6
7
|
appDir: string;
|
|
7
8
|
/**
|
package/lib/instance/vela5.js
CHANGED
|
@@ -13,6 +13,7 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
13
13
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
14
14
|
class Vela5Instance extends _miwear.default {
|
|
15
15
|
static emulatorStartedFlag = /Boot completed/;
|
|
16
|
+
static appStartedFlag = /Start main loop/;
|
|
16
17
|
imageType = (() => _Vvd.VelaImageType.VELA_WATCH_5)();
|
|
17
18
|
appDir = '/data/app';
|
|
18
19
|
|
package/lib/vvd/index.d.ts
CHANGED
package/lib/vvd/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aiot-toolkit/emulator",
|
|
3
|
-
"version": "2.0.4-beta.
|
|
3
|
+
"version": "2.0.4-beta.7",
|
|
4
4
|
"description": "vela emulator tool.",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "ISC",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"emulator"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@aiot-toolkit/shared-utils": "2.0.4-beta.
|
|
39
|
+
"@aiot-toolkit/shared-utils": "2.0.4-beta.7",
|
|
40
40
|
"@miwt/adb": "^0.9.0",
|
|
41
41
|
"adm-zip": "^0.5.16",
|
|
42
42
|
"dayjs": "^1.11.12",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"@types/adm-zip": "^0.5.5",
|
|
52
52
|
"@types/ini": "^4.1.1"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "76f494f143fd127f8019fdb83bba933761ba0bf2"
|
|
55
55
|
}
|