mirror of
https://github.com/ikunshare/Onekey.git
synced 2026-01-15 09:33:06 +08:00
Compare commits
38 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5ac9f8f28a | ||
|
|
b8d76f98da | ||
|
|
1e5f0b6774 | ||
|
|
5357ed5fe7 | ||
|
|
5cd5e89ed7 | ||
|
|
e34cad1889 | ||
|
|
4aa1c22c25 | ||
|
|
8ee7765bb0 | ||
|
|
4bd1362317 | ||
|
|
3c0f2ecd6f | ||
|
|
7590f3f791 | ||
|
|
7adcf004e5 | ||
|
|
9ff08d0f91 | ||
|
|
5356947022 | ||
|
|
6a9fed2e39 | ||
|
|
8cefcae6a7 | ||
|
|
0a3ee59d45 | ||
|
|
194e6a41d2 | ||
|
|
07079a6d58 | ||
|
|
4ed51987ba | ||
|
|
28db8b15db | ||
|
|
c33b871188 | ||
|
|
9bd6cc5a60 | ||
|
|
87594e0bf0 | ||
|
|
6f4dac876f | ||
|
|
2073fbdd9a | ||
|
|
a821938f01 | ||
|
|
8bc6095dcf | ||
|
|
b1b0fe9517 | ||
|
|
5964b5fb4e | ||
|
|
aa27e11cd7 | ||
|
|
ecc454de61 | ||
|
|
1cdb19b3df | ||
|
|
53b76aea64 | ||
|
|
7e3e06ac00 | ||
|
|
cfe9c5c8d6 | ||
|
|
b8f0b5caf4 | ||
|
|
c866f19967 |
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
@@ -7,14 +7,18 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- name: Check out git repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# Push tag to GitHub if package.json version's tag is not tagged
|
||||
- name: Get package version
|
||||
run: node -p -e '`PACKAGE_VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
|
||||
shell: powershell
|
||||
run: |
|
||||
$version = (Get-Content package.json | ConvertFrom-Json).version
|
||||
echo "PACKAGE_VERSION=$version" >> $env:GITHUB_ENV
|
||||
|
||||
|
||||
- name: Set up Python 3.11
|
||||
uses: actions/setup-python@v3
|
||||
@@ -41,6 +45,7 @@ jobs:
|
||||
file-version: ${{ env.PACKAGE_VERSION }}
|
||||
product-version: ${{ env.PACKAGE_VERSION }}
|
||||
file-description: 一个Steam仓库清单下载器
|
||||
copyright: Copyright © 2024 ikun0014
|
||||
output-file: Onekey---v${{ env.PACKAGE_VERSION }}.exe
|
||||
assume-yes-for-downloads: true
|
||||
output-dir: build
|
||||
@@ -61,6 +66,6 @@ jobs:
|
||||
draft: false
|
||||
tag_name: v${{ env.PACKAGE_VERSION }}
|
||||
files: |
|
||||
Onekey---v${{ env.PACKAGE_VERSION }}.exe
|
||||
build/Onekey---v${{ env.PACKAGE_VERSION }}.exe
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
28
README.md
28
README.md
@@ -17,24 +17,26 @@
|
||||
先去Release下最新发布,然后去steamtools官网下steamtools,日志会有点石介意别用
|
||||
|
||||
## 开发
|
||||
本程序使用Python编程语言开发
|
||||
要求环境:
|
||||
1.Python 3.10及以上
|
||||
2.Windows 10及以上
|
||||
3.使用Git进行版本管理
|
||||
本程序使用Python编程语言开发
|
||||
要求环境:
|
||||
1.Python 3.10及以上
|
||||
2.Windows 10及以上
|
||||
3.使用Git进行版本管理
|
||||
|
||||
1.克隆项目到本地
|
||||
|
||||
```
|
||||
git clone https://github.com/ikunshare/Onekey
|
||||
```
|
||||
|
||||
2.安装依赖
|
||||
|
||||
```
|
||||
pip install -r requirements.txt
|
||||
|
||||
3.Success!
|
||||
```
|
||||
|
||||
## 项目协议
|
||||
本项目基于 ACSL V2.0 许可证发行,以下协议是对于 ACSL V2.0 原协议的补充,如有冲突,以以下协议为准。
|
||||
本项目基于 GPL-3.0 许可证发行,以下协议是对于 GPL-3.0 原协议的补充,如有冲突,以以下协议为准。
|
||||
|
||||
词语约定:“使用者”指签署本协议的使用者;“版权数据”指包括但不限于图像、音频、名字等在内的他人拥有所属版权的数据。
|
||||
|
||||
@@ -57,3 +59,13 @@ pip install -r requirements.txt
|
||||
<a href="https://github.com/ikunshare/Onekey/graphs/contributors">
|
||||
<img src="https://contrib.rocks/image?repo=ikunshare/Onekey" />
|
||||
</a>
|
||||
|
||||
## 常见问题解答(FAQ)
|
||||
查看 [FAQ](https://ikunshare.com/d/49) 获取常见问题的解答。
|
||||
|
||||
## 社区和支持
|
||||
加入我们的社区,参与讨论和支持:
|
||||
- [GitHub Discussions](https://github.com/ikunshare/Onekey/discussions)
|
||||
- [Gitter Chat](https://gitter.im/ikunshare/Onekey)
|
||||
- [QQ](https://qm.qq.com/q/d7sWovfAGI)
|
||||
- [Telegram](https://t.me/ikunshare_group)
|
||||
|
||||
@@ -1,26 +1,28 @@
|
||||
import os
|
||||
import time
|
||||
import ujson as json
|
||||
|
||||
from aiohttp import ClientError
|
||||
from .log import log
|
||||
from .stack_error import stack_error
|
||||
|
||||
|
||||
async def check_github_api_rate_limit(headers, session):
|
||||
url = 'https://api.github.com/rate_limit'
|
||||
try:
|
||||
url = 'https://api.github.com/rate_limit'
|
||||
|
||||
async with session.get(url, headers=headers, ssl=False) as r:
|
||||
if not r == None:
|
||||
async with session.get(url, headers=headers, ssl=False) as r:
|
||||
r_json = await r.json()
|
||||
else:
|
||||
log.error('孩子,你怎么做到的?')
|
||||
os.system('pause')
|
||||
|
||||
if r.status == 200:
|
||||
rate_limit = r_json['rate']
|
||||
remaining_requests = rate_limit['remaining']
|
||||
reset_time = rate_limit['reset']
|
||||
reset_time_formatted = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(reset_time))
|
||||
log.info(f' 🔄 剩余请求次数: {remaining_requests}')
|
||||
else:
|
||||
log.error('Github请求数检查失败')
|
||||
if r.status == 200:
|
||||
rate_limit = r_json['rate']
|
||||
remaining_requests = rate_limit['remaining']
|
||||
reset_time = rate_limit['reset']
|
||||
reset_time_formatted = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(reset_time))
|
||||
log.info(f' 🔄 剩余请求次数: {remaining_requests}')
|
||||
else:
|
||||
log.error('⚠ Github请求数检查失败,网络错误')
|
||||
|
||||
if remaining_requests == 0:
|
||||
log.warning(f' ⚠ GitHub API 请求数已用尽,将在 {reset_time_formatted} 重置, 不想等生成一个填配置文件里')
|
||||
if remaining_requests == 0:
|
||||
log.warning(f'⚠ GitHub API 请求数已用尽,将在 {reset_time_formatted} 重置, 不想等生成一个填配置文件里')
|
||||
except ClientError as e:
|
||||
log.error(f'⚠ 检查Github API 请求数失败,{stack_error(e)}')
|
||||
@@ -7,18 +7,28 @@ import aiofiles
|
||||
from .stack_error import stack_error
|
||||
from .log import log
|
||||
|
||||
|
||||
async def gen_config_file():
|
||||
default_config ={
|
||||
"Github_Personal_Token": "",
|
||||
"Custom_Steam_Path": "",
|
||||
"QA1": "温馨提示:Github_Personal_Token可在Github设置的最底下开发者选项找到,详情看教程",
|
||||
"教程": "https://lyvx-my.sharepoint.com/:w:/g/personal/ikun_ikunshare_com/EWqIqyCElLNLo_CKfLbqix0BWU_O03HLzEHQKHdJYrUz-Q?e=79MZjw"
|
||||
}
|
||||
async with aiofiles.open("./config.json", mode="w", encoding="utf-8") as f:
|
||||
await f.write(json.dumps(default_config, indent=2, ensure_ascii=False,
|
||||
escape_forward_slashes=False))
|
||||
await f.close()
|
||||
log.info(' 🖱️ 程序可能为第一次启动,请填写配置文件后重新启动程序')
|
||||
try:
|
||||
qa1 = "温馨提示:Github_Personal_Token可在Github设置的最底下开发者选项找到,详情看教程"
|
||||
tutorial = "https://ikunshare.com/Onekey_tutorial"
|
||||
default_config ={
|
||||
"Github_Personal_Token": "",
|
||||
"Custom_Steam_Path": "",
|
||||
"QA1": qa1,
|
||||
"教程": tutorial
|
||||
}
|
||||
async with aiofiles.open("./config.json",
|
||||
mode="w",
|
||||
encoding="utf-8") as f:
|
||||
await f.write(json.dumps(default_config,
|
||||
indent=2,
|
||||
ensure_ascii=False,
|
||||
escape_forward_slashes=False))
|
||||
await f.close()
|
||||
log.info('🖱️ 程序可能为第一次启动,请填写配置文件后重新启动程序')
|
||||
except Exception as e:
|
||||
log.error(f'❗ 配置文件生成失败,{stack_error(e)}')
|
||||
|
||||
|
||||
async def load_config():
|
||||
@@ -28,7 +38,9 @@ async def load_config():
|
||||
sys.exit()
|
||||
else:
|
||||
try:
|
||||
async with aiofiles.open("./config.json", mode="r", encoding="utf-8") as f:
|
||||
async with aiofiles.open("./config.json",
|
||||
mode="r",
|
||||
encoding="utf-8") as f:
|
||||
config = json.loads(await f.read())
|
||||
return config
|
||||
except Exception as e:
|
||||
@@ -37,4 +49,4 @@ async def load_config():
|
||||
os.system('pause')
|
||||
|
||||
|
||||
config = asyncio.run(load_config())
|
||||
config = asyncio.run(load_config())
|
||||
|
||||
@@ -6,6 +6,7 @@ from .log import log
|
||||
|
||||
lock = asyncio.Lock()
|
||||
|
||||
|
||||
async def depotkey_merge(config_path, depots_config):
|
||||
if not config_path.exists():
|
||||
async with lock:
|
||||
|
||||
@@ -6,7 +6,7 @@ from .log import log
|
||||
from .manifest_down import get
|
||||
from .stack_error import stack_error
|
||||
|
||||
# 获取清单信息
|
||||
|
||||
async def get_manifest(sha, path, steam_path: Path, repo, session):
|
||||
collected_depots = []
|
||||
try:
|
||||
|
||||
@@ -1,15 +1,19 @@
|
||||
from colorama import Fore, Back, Style, init
|
||||
|
||||
init()
|
||||
|
||||
from .log import log
|
||||
|
||||
def init():
|
||||
print('\033[1;32;40m _____ __ _ _____ _ _ _____ __ __ ' + '\033[0m')
|
||||
print('\033[1;32;40m / _ \\ | \\ | | | ____| | | / / | ____| \\ \\ / /' + '\033[0m')
|
||||
print('\033[1;32;40m | | | | | \\| | | |__ | |/ / | |__ \\ \\/ /' + '\033[0m')
|
||||
print('\033[1;32;40m | | | | | |\\ | | __| | |\\ \\ | __| \\ / ' + '\033[0m')
|
||||
print('\033[1;32;40m | |_| | | | \\ | | |___ | | \\ \\ | |___ / /' + '\033[0m')
|
||||
print('\033[1;32;40m \\_____/ |_| \\_| |_____| |_| \\_\\ |_____| /_/' + '\033[0m')
|
||||
log.info('作者ikun0014')
|
||||
log.info('本项目基于wxy1343/ManifestAutoUpdate进行修改,采用ACSL许可证')
|
||||
log.info('版本:1.1.9')
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} _____ __ _ _____ _ _ _____ __ __ {Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} / _ \\ | \\ | | | ____| | | / / | ____| \\ \\ / /{Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | | | | | \\| | | |__ | |/ / | |__ \\ \\/ /{Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | | | | | |\\ | | __| | |\\ \\ | __| \\ / {Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} | |_| | | | \\ | | |___ | | \\ \\ | |___ / /{Style.RESET_ALL}")
|
||||
print(f"{Fore.GREEN}{Back.BLACK}{Style.BRIGHT} \\_____/ |_| \\_| |_____| |_| \\_\\ |_____| /_/{Style.RESET_ALL}")
|
||||
log.info('作者:ikun0014')
|
||||
log.info('本项目采用GNU General Public License v3开源许可证')
|
||||
log.info('版本:1.2.3')
|
||||
log.info('项目仓库:https://github.com/ikunshare/Onekey')
|
||||
log.info('官网:ikunshare.com')
|
||||
log.warning('本项目完全开源免费,如果你在淘宝,QQ群内通过购买方式获得,赶紧回去骂商家死全家\n交流群组:\n点击链接加入群聊【𝗶𝗸𝘂𝗻分享】:https://qm.qq.com/q/d7sWovfAGI\nhttps://t.me/ikunshare_group')
|
||||
log.warning('本项目完全开源免费,如果你在淘宝,QQ群内通过购买方式获得,赶紧回去骂商家死全家\n交流群组:\nhttps://qm.qq.com/q/d7sWovfAGI\nhttps://t.me/ikunshare_group')
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import logging
|
||||
import colorlog
|
||||
|
||||
|
||||
def init_log():
|
||||
logger = logging.getLogger('Onekey')
|
||||
logger.setLevel(logging.DEBUG)
|
||||
@@ -18,4 +19,5 @@ def init_log():
|
||||
logger.addHandler(stream_handler)
|
||||
return logger
|
||||
|
||||
log = init_log()
|
||||
|
||||
log = init_log()
|
||||
|
||||
@@ -18,16 +18,18 @@ isSteamTools = (steam_path / 'config' / 'stUI').is_dir()
|
||||
|
||||
async def main(app_id, repos):
|
||||
app_id_list = list(filter(str.isdecimal, app_id.strip().split('-')))
|
||||
app_id = app_id_list[0]
|
||||
if not app_id_list:
|
||||
log.error(f'⚠ App ID无效')
|
||||
return False
|
||||
else:
|
||||
app_id = app_id_list[0]
|
||||
|
||||
async with ClientSession() as session:
|
||||
github_token = config["Github_Personal_Token"]
|
||||
headers = {'Authorization': f'Bearer {github_token}'} if github_token else None
|
||||
latest_date = None
|
||||
selected_repo = None
|
||||
|
||||
await check_github_api_rate_limit(headers, session)
|
||||
|
||||
for repo in repos:
|
||||
url = f'https://api.github.com/repos/{repo}/branches/{app_id}'
|
||||
try:
|
||||
@@ -39,7 +41,8 @@ async def main(app_id, repos):
|
||||
latest_date = date
|
||||
selected_repo = repo
|
||||
except Exception as e:
|
||||
log.error(f' ⚠ 获取分支信息失败: {stack_error(e)}')
|
||||
log.error(f'⚠ 获取分支信息失败: {stack_error(e)}')
|
||||
|
||||
if selected_repo:
|
||||
log.info(f' 🔄 选择清单仓库:{selected_repo}')
|
||||
url = f'https://api.github.com/repos/{selected_repo}/branches/{app_id}'
|
||||
@@ -57,20 +60,21 @@ async def main(app_id, repos):
|
||||
collected_depots.extend(result)
|
||||
if collected_depots:
|
||||
if isSteamTools:
|
||||
migrate(st_use=True)
|
||||
await migrate(st_use=True, session=session)
|
||||
await stool_add(collected_depots, app_id)
|
||||
log.info(' ✅ 找到SteamTools,已添加解锁文件')
|
||||
if isGreenLuma:
|
||||
migrate(st_use=False)
|
||||
await migrate(st_use=False, session=session)
|
||||
await greenluma_add([app_id])
|
||||
depot_config = {'depots': {depot_id: {'DecryptionKey': depot_key} for depot_id, depot_key in collected_depots}}
|
||||
await depotkey_merge(steam_path / 'config' / 'config.vdf', depot_config)
|
||||
if await greenluma_add([int(i) for i in depot_config['depots'] if i.isdecimal()]):
|
||||
log.info(' ✅ 找到GreenLuma,已添加解锁文件')
|
||||
log.info(f' ✅ 清单最后更新时间:{date}')
|
||||
log.info(f' ✅ 入库成功: {app_id}')
|
||||
log.info('✅ 找到GreenLuma,已添加解锁文件')
|
||||
log.info(f'✅ 清单最后更新时间:{date}')
|
||||
log.info(f'✅ 入库成功: {app_id}')
|
||||
os.system('pause')
|
||||
return True
|
||||
log.error(f' ⚠ 清单下载或生成失败: {app_id}')
|
||||
|
||||
log.error(f'⚠ 清单下载或生成失败: {app_id}')
|
||||
os.system('pause')
|
||||
return False
|
||||
@@ -1,12 +1,16 @@
|
||||
from aiohttp import ClientError
|
||||
from tqdm.asyncio import tqdm_asyncio
|
||||
|
||||
from .log import log
|
||||
|
||||
|
||||
async def get(sha, path, repo, session):
|
||||
url_list = [
|
||||
f'https://cdn.jsdmirror.com/gh/{repo}@{sha}/{path}',
|
||||
f'https://jsd.onmicrosoft.cn/gh/{repo}@{sha}/{path}',
|
||||
f'https://mirror.ghproxy.com/https://raw.githubusercontent.com/{repo}/{sha}/{path}',
|
||||
f'https://raw.githubusercontent.com/{repo}/{sha}/{path}',
|
||||
f'https://raw.dgithub.xyz/{repo}/{sha}/{path}',
|
||||
f'https://raw.gitmirror.com/{repo}/{sha}/{path}',
|
||||
f'https://raw.githubusercontent.com/{repo}/{sha}/{path}'
|
||||
]
|
||||
retry = 3
|
||||
while retry:
|
||||
@@ -14,12 +18,20 @@ async def get(sha, path, repo, session):
|
||||
try:
|
||||
async with session.get(url, ssl=False) as r:
|
||||
if r.status == 200:
|
||||
return await r.read()
|
||||
total_size = int(r.headers.get('Content-Length', 0))
|
||||
chunk_size = 2048
|
||||
content = bytearray()
|
||||
|
||||
with tqdm_asyncio(total=total_size, unit='B', unit_scale=True, desc=f'下载 {path}', colour='#ffadad') as pbar:
|
||||
async for chunk in r.content.iter_chunked(chunk_size):
|
||||
content.extend(chunk)
|
||||
pbar.update(len(chunk))
|
||||
return content
|
||||
else:
|
||||
log.error(f' 🔄 获取失败: {path} - 状态码: {r.status}')
|
||||
log.error(f'🔄 获取失败: {path} - 状态码: {r.status}')
|
||||
except ClientError:
|
||||
log.error(f' 🔄 获取失败: {path} - 连接错误')
|
||||
log.error(f'🔄 获取失败: {path} - 连接错误')
|
||||
retry -= 1
|
||||
log.warning(f' 🔄 重试剩余次数: {retry} - {path}')
|
||||
log.error(f' 🔄 超过最大重试次数: {path}')
|
||||
raise Exception(f' 🔄 无法下载: {path}')
|
||||
log.warning(f'🔄 重试剩余次数: {retry} - {path}')
|
||||
log.error(f'🔄 超过最大重试次数: {path}')
|
||||
raise Exception(f'🔄 无法下载: {path}')
|
||||
|
||||
@@ -1,21 +1,22 @@
|
||||
import os
|
||||
import subprocess
|
||||
import requests
|
||||
|
||||
import aiofiles
|
||||
from pathlib import Path
|
||||
from tqdm.asyncio import tqdm
|
||||
|
||||
from .log import log
|
||||
from .get_steam_path import steam_path
|
||||
|
||||
directory = Path(steam_path / "config" / "stplug-in")
|
||||
|
||||
def migrate(st_use):
|
||||
async def migrate(st_use, session):
|
||||
if st_use == True:
|
||||
log.info('检测到你正在使用SteamTools,尝试迁移旧文件')
|
||||
log.info('🔄 检测到你正在使用SteamTools,尝试迁移旧文件')
|
||||
if os.path.exists(directory):
|
||||
for filename in os.listdir(directory):
|
||||
if filename.startswith("Onekey_unlock_"):
|
||||
new_filename = filename[len("Onekey_unlock_"):]
|
||||
|
||||
|
||||
old_file = os.path.join(directory, filename)
|
||||
new_file = os.path.join(directory, new_filename)
|
||||
|
||||
@@ -25,20 +26,29 @@ def migrate(st_use):
|
||||
except Exception as e:
|
||||
log.error(f'Failed to rename {filename} -> {new_filename}: {e}')
|
||||
else:
|
||||
log.error('故障,正在重新安装SteamTools')
|
||||
log.error('⚠ 故障,正在重新安装SteamTools')
|
||||
temp_path = './temp'
|
||||
if not os.path.exists(temp_path):
|
||||
os.mkdir(temp_path)
|
||||
down_url = 'https://steamtools.net/res/SteamtoolsSetup.exe'
|
||||
out_path = './temp/SteamtoolsSetup.exe'
|
||||
with requests.get(down_url, stream=True) as r:
|
||||
if r.status_code == 200:
|
||||
with open(out_path, 'wb') as f:
|
||||
for chunk in r.iter_content(chunk_size=8192):
|
||||
f.write(chunk)
|
||||
|
||||
async with session.get(down_url, stream=True) as r:
|
||||
if r.status == 200:
|
||||
total_size = int(await r.headers.get('Content-Length', 0))
|
||||
chunk_size = 8192
|
||||
progress = tqdm(total=total_size, unit='B', unit_scale=True)
|
||||
|
||||
async with aiofiles.open(out_path, mode='wb') as f:
|
||||
async for chunk in r.content.iter_chunked(chunk_size=chunk_size):
|
||||
await f.write(chunk)
|
||||
await progress.update(len(chunk))
|
||||
|
||||
await progress.close()
|
||||
else:
|
||||
log.error('网络错误')
|
||||
log.error('⚠ 网络错误')
|
||||
|
||||
subprocess.run(str(out_path))
|
||||
os.rmdir(temp_path)
|
||||
else:
|
||||
log.info('未使用SteamTools,停止迁移')
|
||||
log.info('✅ 未使用SteamTools,停止迁移')
|
||||
@@ -13,7 +13,7 @@ async def stool_add(depot_data, app_id):
|
||||
lua_filepath = steam_path / "config" / "stplug-in" / lua_filename
|
||||
|
||||
async with lock:
|
||||
log.info(f' ✅ SteamTools解锁文件生成: {lua_filepath}')
|
||||
log.info(f'✅ SteamTools解锁文件生成: {lua_filepath}')
|
||||
async with aiofiles.open(lua_filepath, mode="w", encoding="utf-8") as lua_file:
|
||||
await lua_file.write(f'addappid({app_id}, 1, "None")\n')
|
||||
for depot_id, depot_key in depot_data:
|
||||
|
||||
BIN
icon.jpg
BIN
icon.jpg
Binary file not shown.
|
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 42 KiB |
10
main.py
10
main.py
@@ -2,6 +2,8 @@ import os
|
||||
import time
|
||||
import asyncio
|
||||
|
||||
from colorama import Fore, Back, Style
|
||||
from colorama import init as cinit
|
||||
from common.log import log
|
||||
from common.stack_error import stack_error
|
||||
from common.init_text import init
|
||||
@@ -10,17 +12,19 @@ from common.main_func import main
|
||||
lock = asyncio.Lock()
|
||||
|
||||
init()
|
||||
cinit()
|
||||
|
||||
repos = [
|
||||
'ikun0014/ManifestHub',
|
||||
'Auiowu/ManifestAutoUpdate',
|
||||
'tymolu233/ManifestAutoUpdate'
|
||||
'tymolu233/ManifestAutoUpdate',
|
||||
]
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
log.info('❗ App ID可以在SteamDB或Steam商店链接页面查看')
|
||||
while True:
|
||||
log.info('App ID可以在SteamDB或Steam商店链接页面查看')
|
||||
app_id = input("请输入游戏AppID:").strip()
|
||||
app_id = input(f"{Fore.CYAN}{Back.BLACK}{Style.BRIGHT}🤔 请输入游戏AppID:{Style.RESET_ALL}").strip()
|
||||
asyncio.run(main(app_id, repos))
|
||||
except KeyboardInterrupt:
|
||||
exit()
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "onekey",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.3",
|
||||
"description": "一个Steam仓库清单下载器",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -2,6 +2,7 @@ aiofiles
|
||||
colorlog
|
||||
ujson
|
||||
vdf
|
||||
nuitka
|
||||
requests
|
||||
imageio
|
||||
aiohttp
|
||||
tqdm
|
||||
Reference in New Issue
Block a user