Compare commits

..

2 Commits

Author SHA1 Message Date
wds
f1d6e81d57 test: 测试同步到github
Some checks failed
Gitea Actions Demo / sync_job (push) Has been cancelled
2025-10-21 19:55:22 +08:00
wds
37a5d8d804 feat: V1.0.0
2025-10-21
-  add the shell history feature
-  add the logging feature
-  refactor the codebase for better maintainability
2025-10-21 19:36:27 +08:00
2 changed files with 24 additions and 4 deletions

View File

@ -0,0 +1,17 @@
name: Gitea Actions Demo
# run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
run-name: ubuntu22-a5000
on: [push]
jobs:
sync_job:
runs-on: a5000
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "This is a Gitea Actions demo workflow!"
- run: git remote remove origin || true
- run: git remote add origin https://github.com/wds-dxh/AutoTerminal.git
- run: git push -u origin main -f

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "autoterminal"
version = "1.0.0"
version = "1.0.1"
description = "智能终端工具基于LLM将自然语言转换为终端命令(create by claude 4 sonnet)"
readme = "README.md"
requires-python = ">=3.10"
@ -33,9 +33,12 @@ dependencies = [
]
[project.urls]
Homepage = "http://cloud-home.dxh-wds.top:20100/w/autoterminal"
Repository = "http://cloud-home.dxh-wds.top:20100/w/autoterminal"
Issues = "http://cloud-home.dxh-wds.top:20100/w/autoterminal/issues"
Homepage = "https://github.com/wds-dxh/AutoTerminal.git"
Repository = "https://github.com/wds-dxh/AutoTerminal.git"
Issues = "https://github.com/wds-dxh/AutoTerminal/issues"
# Homepage = "http://cloud-home.dxh-wds.top:20100/w/autoterminal"
# Repository = "http://cloud-home.dxh-wds.top:20100/w/autoterminal"
# Issues = "http://cloud-home.dxh-wds.top:20100/w/autoterminal/issues"
[project.scripts]
at = "autoterminal.main:main"