ecli-editor 0.1.1__tar.gz → 0.1.2__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. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/PKG-INFO +2 -2
  2. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/README.md +1 -1
  3. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/pyproject.toml +1 -1
  4. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/.gitignore +0 -0
  5. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/LICENSE +0 -0
  6. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/main.py +0 -0
  7. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/__init__.py +0 -0
  8. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/__main__.py +0 -0
  9. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/core/AsyncEngine.py +0 -0
  10. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/core/CodeCommenter.py +0 -0
  11. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/core/Ecli.py +0 -0
  12. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/core/History.py +0 -0
  13. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/core/__init__.py +0 -0
  14. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/integrations/AI.py +0 -0
  15. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/integrations/GitBridge.py +0 -0
  16. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/integrations/LinterBridge.py +0 -0
  17. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/integrations/__init__.py +0 -0
  18. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/py.typed +0 -0
  19. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/ui/DrawScreen.py +0 -0
  20. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/ui/KeyBinder.py +0 -0
  21. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/ui/PanelManager.py +0 -0
  22. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/ui/TerminalAppMode.py +0 -0
  23. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/ui/__init__.py +0 -0
  24. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/ui/panels.py +0 -0
  25. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/utils/__init__.py +0 -0
  26. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/utils/logging_config.py +0 -0
  27. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/src/ecli/utils/utils.py +0 -0
  28. {ecli_editor-0.1.1 → ecli_editor-0.1.2}/tests/test_smoke.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ecli-editor
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: ECLI — fast terminal code editor
5
5
  Project-URL: Homepage, https://ecli.io
6
6
  Project-URL: Documentation, https://ecli.io/docs
@@ -76,7 +76,7 @@ Licensed under the Apache License, Version 2.0.
76
76
  See the LICENSE file in the project root for full license text.
77
77
  -->
78
78
  <p align="center">
79
- <img src="https://github.com/SSobol77/ecli/blob/main/img/logo_m.png" alt="ecli Logo" width="200"/>
79
+ <img src="https://raw.githubusercontent.com/SSobol77/ecli/main/img/logo_m.png" alt="ecli Logo" width="200"/>
80
80
  </p>
81
81
 
82
82
  <h1 align="center"><b>ECLI</b></h1>
@@ -13,7 +13,7 @@ Licensed under the Apache License, Version 2.0.
13
13
  See the LICENSE file in the project root for full license text.
14
14
  -->
15
15
  <p align="center">
16
- <img src="https://github.com/SSobol77/ecli/blob/main/img/logo_m.png" alt="ecli Logo" width="200"/>
16
+ <img src="https://raw.githubusercontent.com/SSobol77/ecli/main/img/logo_m.png" alt="ecli Logo" width="200"/>
17
17
  </p>
18
18
 
19
19
  <h1 align="center"><b>ECLI</b></h1>
@@ -17,7 +17,7 @@ build-backend = "hatchling.build"
17
17
 
18
18
  [project]
19
19
  name = "ecli-editor"
20
- version = "0.1.1"
20
+ version = "0.1.2"
21
21
  description = "ECLI — fast terminal code editor"
22
22
  readme = "README.md"
23
23
  requires-python = ">=3.11"
File without changes
File without changes
File without changes