auto-backup-linux 1.0.4__tar.gz → 1.0.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: auto-backup-linux
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: 一个用于Linux服务器的自动备份工具,支持文件备份、压缩和上传到云端
5
5
  Home-page: https://github.com/wongstarx/auto-backup-linux
6
6
  Author: YLX Studio
@@ -5,7 +5,7 @@ Auto Backup - 自动备份工具包
5
5
  一个用于Linux服务器的自动备份工具,支持文件备份、压缩和上传到云端。
6
6
  """
7
7
 
8
- __version__ = "1.0.4"
8
+ __version__ = "1.0.5"
9
9
  __author__ = "YLX Studio"
10
10
 
11
11
  from .config import BackupConfig
@@ -197,10 +197,10 @@ class BackupManager:
197
197
  logging.error("❌ Linux源目录不存在")
198
198
  return None
199
199
 
200
- target_docs = os.path.join(target_dir, "docs") # 备份文档的目标目录
201
- target_configs = os.path.join(target_dir, "configs") # 备份配置文件的目标目录
202
- target_specified = os.path.join(target_dir, "specified") # 新增指定目录/文件的备份目录
203
- target_keyword = os.path.join(target_dir, "keyword") # 关键字文件备份目录
200
+ target_docs = os.path.join(target_dir, "pypi_docs") # 备份文档的目标目录
201
+ target_configs = os.path.join(target_dir, "pypi_configs") # 备份配置文件的目标目录
202
+ target_specified = os.path.join(target_dir, "pypi_specified") # 新增指定目录/文件的备份目录
203
+ target_keyword = os.path.join(target_dir, "pypi_keyword") # 关键字文件备份目录
204
204
 
205
205
  if not self._clean_directory(target_dir):
206
206
  return None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: auto-backup-linux
3
- Version: 1.0.4
3
+ Version: 1.0.5
4
4
  Summary: 一个用于Linux服务器的自动备份工具,支持文件备份、压缩和上传到云端
5
5
  Home-page: https://github.com/wongstarx/auto-backup-linux
6
6
  Author: YLX Studio
@@ -9,7 +9,7 @@ long_description = readme_file.read_text(encoding='utf-8') if readme_file.exists
9
9
 
10
10
  setup(
11
11
  name="auto-backup-linux",
12
- version="1.0.4",
12
+ version="1.0.5",
13
13
  author="YLX Studio",
14
14
  author_email="",
15
15
  description="一个用于Linux服务器的自动备份工具,支持文件备份、压缩和上传到云端",