viewsync-master 1.0.6 → 1.0.8
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/index.js +9 -6
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -93,11 +93,14 @@ async function run() {
|
|
|
93
93
|
console.clear();
|
|
94
94
|
|
|
95
95
|
const logo = C + B + `
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
96
|
+
|
|
97
|
+
_ ___ _____
|
|
98
|
+
| | / (_)__ _ __ / ___/__ ______ _____
|
|
99
|
+
| | / / / _ \\ | /| / / \\__ \\/ / / / __ \\/ ___/
|
|
100
|
+
| |/ / / __/ |/ |/ / ___/ / /_/ / / / / /__
|
|
101
|
+
|___/_/\\___/|__/|__/ /____/\\__, /_/ /_/[___/
|
|
102
|
+
/____/
|
|
103
|
+
[ PROJECT: VIEW-SYNC ] [ v1.0.10 ]
|
|
101
104
|
` + Z;
|
|
102
105
|
|
|
103
106
|
console.log(logo);
|
|
@@ -114,7 +117,7 @@ async function run() {
|
|
|
114
117
|
try {
|
|
115
118
|
await execAsync('which scrcpy');
|
|
116
119
|
} catch (e) {
|
|
117
|
-
await runCommandWithSpinner("Deploying
|
|
120
|
+
await runCommandWithSpinner("Deploying ViewSync Display Engine", "sudo apt install -y scrcpy");
|
|
118
121
|
}
|
|
119
122
|
|
|
120
123
|
await typeWriter(Y + "\n[PHASE 2] COMPILING NEURAL PYTHON MODULES" + Z, 10);
|