#57: add support for linux-x64

This commit is contained in:
MasOnShi
2022-04-04 20:04:52 +08:00
parent d16428a8b2
commit c1beef1a98
7 changed files with 76 additions and 24 deletions

20
auto-analysis/config.py Normal file
View File

@@ -0,0 +1,20 @@
# -*- coding:utf-8 -*-
"""
@Author: Mas0n
@File: config.py
@Time: 2022/4/4 19:50
@Desc: It's all about getting better.
"""
DOWNLOAD_LINK = {
"win": {
"x86": "https://typora.io/windows/typora-setup-ia32.exe",
"x64": "https://typora.io/windows/typora-setup-x64.exe",
"arm64": "https://typora.io/windows/typora-setup-arm64.exe",
},
"linux": {
"x64": "https://download.typora.io/linux/Typora-linux-x64.tar.gz",
"arm64": "https://download.typora.io/linux/Typora-linux-arm64.tar.gz",
},
}