Add About window

Former-commit-id: 5fc236655eae88c1a2de0b1167733e0a0986bdcb
This commit is contained in:
Physton
2023-06-15 15:26:11 +08:00
parent d624e308ec
commit 1bd3eb61f4
20 changed files with 289 additions and 16 deletions

9
tests/get_version.py Normal file
View File

@@ -0,0 +1,9 @@
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
from scripts.get_version import get_git_commit_version, get_git_remote_versions, get_latest_version
print(get_git_remote_versions())
print(get_git_commit_version())
print(get_latest_version())