mirror of
https://github.com/Mas0nShi/typoraCracker.git
synced 2023-07-10 13:41:20 +08:00
25 lines
619 B
Python
25 lines
619 B
Python
# -*- 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",
|
|
},
|
|
}
|
|
|
|
EXTRACT_ROOT_PATH = {
|
|
"win": "app",
|
|
"linux": "bin/Typora-linux-x64"
|
|
} |