clash-controller 0.2.0__tar.gz → 0.2.1__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 (28) hide show
  1. {clash_controller-0.2.0 → clash_controller-0.2.1}/PKG-INFO +1 -1
  2. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/__init__.py +1 -1
  3. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/app.tcss +1 -1
  4. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller.egg-info/PKG-INFO +1 -1
  5. {clash_controller-0.2.0 → clash_controller-0.2.1}/pyproject.toml +1 -1
  6. {clash_controller-0.2.0 → clash_controller-0.2.1}/README.md +0 -0
  7. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/__main__.py +0 -0
  8. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/api.py +0 -0
  9. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/app.py +0 -0
  10. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/config.py +0 -0
  11. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/deploy.py +0 -0
  12. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/main.py +0 -0
  13. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/screens/__init__.py +0 -0
  14. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/screens/config.py +0 -0
  15. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/screens/home.py +0 -0
  16. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/screens/logs.py +0 -0
  17. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/screens/overview.py +0 -0
  18. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/screens/profiles.py +0 -0
  19. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/screens/settings.py +0 -0
  20. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/ssh.py +0 -0
  21. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/ui.py +0 -0
  22. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller/widgets.py +0 -0
  23. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller.egg-info/SOURCES.txt +0 -0
  24. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller.egg-info/dependency_links.txt +0 -0
  25. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller.egg-info/entry_points.txt +0 -0
  26. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller.egg-info/requires.txt +0 -0
  27. {clash_controller-0.2.0 → clash_controller-0.2.1}/clash_controller.egg-info/top_level.txt +0 -0
  28. {clash_controller-0.2.0 → clash_controller-0.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clash_controller
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A Textual TUI for managing Clash proxy instances
5
5
  Author-email: Moha-Master <hongkongreporter@outlook.com>
6
6
  License-Expression: MIT
@@ -2,4 +2,4 @@
2
2
  Clash Controller - A Textual TUI for managing Clash proxy instances.
3
3
  """
4
4
 
5
- __version__ = "0.2.0"
5
+ __version__ = "0.2.1"
@@ -155,7 +155,7 @@ Screen {
155
155
  }
156
156
 
157
157
  .kv-row Select.kv-ctl {
158
- min-width: 12;
158
+ width: 12;
159
159
  }
160
160
 
161
161
  /* ---------- 首页 / 端点选择(居中 LOGO 版式,.logo-page) ---------- */
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: clash_controller
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: A Textual TUI for managing Clash proxy instances
5
5
  Author-email: Moha-Master <hongkongreporter@outlook.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "clash_controller"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "A Textual TUI for managing Clash proxy instances"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"