add xmind-vana

This commit is contained in:
wcbing 2024-09-03 16:57:20 +08:00
parent f1d1424330
commit 8aead2a53d
2 changed files with 11 additions and 0 deletions

View File

@ -43,6 +43,7 @@ echo "deb [signed-by=/etc/apt/keyrings/wcbing.gpg] https://packages.wcbing.top/d
|飞书|bytedance-feishu-stable|[官网](https://www.feishu.cn/download)|
|termius|termius-app<br />termius-beta|官方仓库|
|Sublime Text|sublime-text|[官网](https://www.sublimetext.com/download)|
|Xmind|xmind-vana|[官网](https://xmind.cn/download/)|
## 自行建立仓库

10
get/xmind-vana.py Normal file
View File

@ -0,0 +1,10 @@
import requests
from module.check import deb
x64_deb_req = requests.head("https://xmind.cn/zen/download/linux_deb/")
x64_deb_url = x64_deb_req.headers["Location"]
# https://dl3.xmind.cn/Xmind-for-Linux-amd64bit-24.04.10311-202405240010.deb
version = x64_deb_url.split("-")[-2]
deb("xmind-vana", version, x64_deb_url)