nonebot-plugin-git-poller 0.1.6__tar.gz → 0.1.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (15) hide show
  1. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/PKG-INFO +3 -1
  2. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/README.md +2 -0
  3. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/pyproject.toml +1 -1
  4. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/__init__.py +1 -1
  5. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/archive.py +0 -0
  6. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/command_args.py +0 -0
  7. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/config.py +0 -0
  8. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/file_server.py +0 -0
  9. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/git.py +0 -0
  10. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/message.py +0 -0
  11. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/mirror.py +0 -0
  12. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/models.py +0 -0
  13. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/repository.py +0 -0
  14. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/schedule.py +0 -0
  15. {nonebot_plugin_git_poller-0.1.6 → nonebot_plugin_git_poller-0.1.7}/src/nonebot_plugin_git_poller/state.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: nonebot-plugin-git-poller
3
- Version: 0.1.6
3
+ Version: 0.1.7
4
4
  Summary: 按群订阅 Git 仓库更新的 NoneBot2 插件,支持多仓库、多分支定时拉取
5
5
  Author: kusadact
6
6
  Author-email: kusadact <kspz2@hotmail.com>
@@ -32,6 +32,8 @@ Description-Content-Type: text/markdown
32
32
 
33
33
  按群订阅 Git 仓库更新的 NoneBot2 插件,支持多仓库、多分支定时拉取,自动推送 commit 更新摘要并上传源码压缩包。
34
34
 
35
+ 支持 GitHub、GitLab、Gitee 以及自建 Git 服务等主流 Git 托管平台,兼容标准 HTTP/HTTPS Git 远端。
36
+
35
37
  ## 安装
36
38
 
37
39
  <details open>
@@ -15,6 +15,8 @@
15
15
 
16
16
  按群订阅 Git 仓库更新的 NoneBot2 插件,支持多仓库、多分支定时拉取,自动推送 commit 更新摘要并上传源码压缩包。
17
17
 
18
+ 支持 GitHub、GitLab、Gitee 以及自建 Git 服务等主流 Git 托管平台,兼容标准 HTTP/HTTPS Git 远端。
19
+
18
20
  ## 安装
19
21
 
20
22
  <details open>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "nonebot-plugin-git-poller"
3
- version = "0.1.6"
3
+ version = "0.1.7"
4
4
  description = "按群订阅 Git 仓库更新的 NoneBot2 插件,支持多仓库、多分支定时拉取"
5
5
  authors = [
6
6
  {name = "kusadact", email = "kspz2@hotmail.com"},
@@ -28,7 +28,7 @@ from .mirror import GitPollerService
28
28
  from .schedule import parse_schedule
29
29
 
30
30
  __plugin_meta__ = PluginMetadata(
31
- name="Git Poller",
31
+ name="Git 仓库订阅拉取",
32
32
  description="按群订阅 Git 仓库更新,支持多仓库、多分支定时拉取",
33
33
  usage=(
34
34
  "/关注仓库 仓库url [--分支名]\n"