|
@@ -1,3 +1,4 @@
|
|
|
+const color= "\x1b[1;35m";
|
|
|
const underline= "\x1b[94;4m";
|
|
|
const normal= "\x1b[0m";
|
|
|
export const introMessage = [
|
|
@@ -25,5 +26,15 @@ export const introMessage = [
|
|
|
" objdump -d ./helloworld | less -M",
|
|
|
" vim examples/c/helloworld.c",
|
|
|
" curl --max-time 15 parrot.live # requires networking",
|
|
|
+ ""
|
|
|
+];
|
|
|
+export const errorMessage = [
|
|
|
+ color + "CheerpX could not start" + normal,
|
|
|
+ "",
|
|
|
+ "CheerpX is expected to work with recent desktop versions of Chrome, Edge, Firefox and Safari",
|
|
|
+ "",
|
|
|
+ "Give it a try from a desktop version / another browser!",
|
|
|
"",
|
|
|
+ "CheerpX internal error message is:",
|
|
|
+ ""
|
|
|
];
|