Update: 修改板卡可见性

This commit is contained in:
王立帮
2024-09-08 14:09:07 +08:00
parent 2435f5cdfa
commit 3bfb9c55ad
10 changed files with 9 additions and 8 deletions

View File

@@ -100,10 +100,10 @@
"boardType": "Python 3 Online",
"boardIndex": "./boards/default/python_pyodide/index.xml",
"env": {
"electron": true,
"electron": false,
"web": true,
"webCompiler": true,
"webSocket": true
"webCompiler": false,
"webSocket": false
},
"language": "Python"
},

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -17,8 +17,7 @@ class PythonShell {
StatusBarImage.init();
const projectPath = path.relative(Env.indexDirPath, Env.boardDirPath);
const loader = new KernelLoader({
pyodideURLs: [path.join(projectPath, 'deps/0.62.21/python3/pyodide/pyodide.js')],
rootPath: 'http://download.mixlylibs.cloud/web-python3-deps',
rootPath: path.join(projectPath, 'deps'),
language: 'python3',
});