We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fedba1 commit 08845e3Copy full SHA for 08845e3
editor/package.json
@@ -5,7 +5,7 @@
5
"license": "4D",
6
"publisher": "4D",
7
"icon": "images/4D-icon.png",
8
- "version": "0.2.0",
+ "version": "0.2.1",
9
"preview": true,
10
"repository": {
11
"type": "git",
editor/src/apiManager.ts
@@ -120,11 +120,11 @@ export class APIManager {
120
}
121
else if (type == "Darwin") {
122
const arch = os.arch();
123
- url += `mac/tool4d_mac`;
+ url += `mac/tool4d_`;
124
if (arch === "arm" || arch === "arm64")
125
- url += "_arm";
+ url += "arm64";
126
else
127
- url += "_x86";
+ url += "x86_64";
128
url += ".tar.xz";
129
130
else if (type == "Windows_NT") {
0 commit comments