Push #23

Merged
Sirherobrine23 merged 5 commits from Dragonfly into main 2021-09-26 03:50:55 +00:00
7 changed files with 75 additions and 59 deletions
Showing only changes of commit a902030bc5 - Show all commits

View File

@ -946,8 +946,8 @@
"amd64": "https://github.com/The-Bds-Maneger/Dragonfly_Build/releases/download/1.17.30/Dragonfly_darwin_amd64"
},
"android": {
"aarch64": null,
"amd64": null
"aarch64": "https://github.com/The-Bds-Maneger/Dragonfly_Build/releases/download/1.17.30/Dragonfly_android_arm64",
"amd64": "https://github.com/The-Bds-Maneger/Dragonfly_Build/releases/download/1.17.30/Dragonfly_android_amd64"
}
}
}

View File

@ -191,6 +191,10 @@ async function CreateLibZIP(url = "") {
if (/arm64/.test(assents.name)) mapped_dragonfly[Version.tag_name].darwin.aarch64 = assents.browser_download_url;
else if (/amd64/.test(assents.name)) mapped_dragonfly[Version.tag_name].darwin.amd64 = assents.browser_download_url;
else console.log("Skip:", assents.name);
} else if (/android/.test(assents.name)) {
if (/arm64/.test(assents.name)) mapped_dragonfly[Version.tag_name].android.aarch64 = assents.browser_download_url;
else if (/amd64/.test(assents.name)) mapped_dragonfly[Version.tag_name].android.amd64 = assents.browser_download_url;
else console.log("Skip:", assents.name);
}
}
}