diff --git a/.gitignore b/.gitignore
index f9f73a5..cf5d15d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,4 +14,4 @@ cache
**/__pycache__/
/session
-main.spec
\ No newline at end of file
+*.spec
\ No newline at end of file
diff --git a/README.md b/README.md
index 98f6c33..fad23fe 100644
--- a/README.md
+++ b/README.md
@@ -5,10 +5,7 @@
autoMate
-autoMate 就像出行中的共享单车,帮你完成任务的最后一个步骤。
-我们不做全流程自动化,也无法帮助政企完成数字化转型,我们能做的,是帮助你完成小任务,这些任务太小了,小到不值得开发自动化,但不开发又需要人去完成,让人左右为难,比如输入“打开影刀开启自动化”、“帮我检查一下文档里有没有错别字和敏感词”、“为自动化起一个简单好记的名子”。
-
-它有着更强大的本地交互能力,意味着你可以整理杂乱的桌面文件、删除无用的文件、打开微信发送给好友一份文档,总之,autoMate 的愿景是让生活更简单。
+autoMate 就像出行中的共享单车,帮你完成软件的最后一个操作,只需 3 分钟就能将 AI 大脑植入任意一个软件。autoMate 有着更强大的本地交互能力,意味着你可以整理杂乱的桌面文件、删除无用的文件、打开微信发送给好友一份文档,总之,autoMate 的愿景是让生活更简单。
diff --git a/config_tmp.yaml b/config_tmp.yaml
index 0fd7c5c..5bf0d6a 100644
--- a/config_tmp.yaml
+++ b/config_tmp.yaml
@@ -12,12 +12,6 @@ components:
api_url: https://api.openai.com/v1/
model: gpt-4-1106-preview
- feishu:
- description: 配置飞书相关信息,用于与飞书进行交互
- config:
- app_id: 请输入api_id
- app_secret: 请输入app_secret
- win
browser:
description: 配置本电脑的浏览器信息,用于浏览器自动化
config:
diff --git a/package.bat b/package.bat
index 0ea822f..d517649 100644
--- a/package.bat
+++ b/package.bat
@@ -1,4 +1,12 @@
-pyinstaller -D -w main.py --add-data=pages/*.ui:pages --add-data=source/*:source
-move dist/main/_internal/pages dist/main/pages
-move dist/main/_internal/source dist/main/source
-copy "config_tmp.yaml" "dist/main/config_tmp.yaml"
+echo Y | pyinstaller -D -w --add-data=pages/*.ui:pages --add-data=source/*:source -i source/logo.ico --name=autoMate main.py
+move dist/autoMate/_internal/pages dist/autoMate/pages
+move dist/autoMate/_internal/source dist/autoMate/source
+copy "config_tmp.yaml" "dist/autoMate/config.yaml"
+
+@REM cd dist/main
+@REM ren "main.exe" "autoMate.exe"
+cd dist
+del "autoMate.zip"
+powershell Compress-Archive -Path autoMate -DestinationPath autoMate.zip
+cd ..
+
diff --git a/source/logo.ico b/source/logo.ico
new file mode 100644
index 0000000..23ffcab
Binary files /dev/null and b/source/logo.ico differ