ver Mar20thv2
fixed bugs in server/main.py (_create_pywinauto_node and get_screen_size) finished migration of a few task configs to Windows fixed bug in python.py
This commit is contained in:
@@ -21,16 +21,18 @@
|
||||
"type": "launch",
|
||||
"parameters": {
|
||||
"command": [
|
||||
"C:\Program Files\Google\Chrome\Application\chrome.exe",
|
||||
"--remote-debugging-port=1337"
|
||||
"C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe",
|
||||
"--remote-debugging-port=1337"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "launch",
|
||||
"parameters": {
|
||||
"command": "nc -l -p 9222 |nc 127.0.0.1 1337",
|
||||
"shell": true
|
||||
"command": [
|
||||
"ncat.exe", "-k", "-l", "0.0.0.0", "9222",
|
||||
"--sh-exec", "ncat.exe 127.0.0.1 1337"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -54,8 +56,8 @@
|
||||
"parameters": {
|
||||
"files": [
|
||||
{
|
||||
"url": "https://drive.usercontent.google.com/download?id=18jdi0OanMtAQenm4ODTivsxTSzdj4HUV&export=download&authuser=0&confirm=t&uuid=e858d3cc-4535-4419-a651-8856ac517d19&at=APZUnTW7g4ygfrkKTPBWCO13twRj:1706611460571",
|
||||
"path": "/home/user/thunderbird-profile.tar.gz"
|
||||
"url": "https://drive.google.com/uc?id=1Yy-ZrkMq4pIQq1Y75bD2WVJXxHMTaMqE&export=download",
|
||||
"path": "C:\\Users\\chenj\\thunderbird-profile.7z"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -64,21 +66,30 @@
|
||||
"type": "execute",
|
||||
"parameters": {
|
||||
"command": [
|
||||
"tar",
|
||||
"-xz",
|
||||
"--recursive-unlink",
|
||||
"-f",
|
||||
"/home/user/thunderbird-profile.tar.gz",
|
||||
"-C",
|
||||
"/home/user/"
|
||||
"C:\\Program Files\\7-Zip\\7z.exe",
|
||||
"x", "C:\\Users\\chenj\\thunderbird-profile.7z"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "execute",
|
||||
"parameters": {
|
||||
"command": "rm -r C:\\Users\\chenj\\AppData\\Roaming\\Thunderbird",
|
||||
"shell": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "execute",
|
||||
"parameters": {
|
||||
"command": "mv C:\\Users\\chenj\\Thunderbird C:\\Users\\chenj\\AppData\\Roaming\\Thunderbird",
|
||||
"shell": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "launch",
|
||||
"parameters": {
|
||||
"command": [
|
||||
"/usr/bin/thunderbird"
|
||||
"C:\\Program Files\\Mozilla Thunderbird\\thunderbird.exe"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user