autodocgenerator 0.9.2.5__tar.gz → 0.9.2.8__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 (26) hide show
  1. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/PKG-INFO +3 -3
  2. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/README.md +2 -2
  3. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/auto_runner/config_reader.py +1 -0
  4. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/auto_runner/run_file.py +2 -2
  5. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/config/config.py +0 -1
  6. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/manage.py +1 -1
  7. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/pyproject.toml +1 -1
  8. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/__init__.py +0 -0
  9. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/__init__.py +0 -0
  10. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/config/config.py +0 -0
  11. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/exceptions.py +0 -0
  12. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/models/gpt_model.py +0 -0
  13. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/models/model.py +0 -0
  14. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/__init__.py +0 -0
  15. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/base_factory.py +0 -0
  16. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/modules/general_modules.py +0 -0
  17. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/modules/intro.py +0 -0
  18. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/postprocessor/custom_intro.py +0 -0
  19. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/postprocessor/sorting.py +0 -0
  20. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/code_mix.py +0 -0
  21. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/compressor.py +0 -0
  22. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/settings.py +0 -0
  23. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/spliter.py +0 -0
  24. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/ui/__init__.py +0 -0
  25. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/ui/logging.py +0 -0
  26. {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/ui/progress_base.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autodocgenerator
3
- Version: 0.9.2.5
3
+ Version: 0.9.2.8
4
4
  Summary: This Project helps you to create docs for your projects
5
5
  License: MIT
6
6
  Author: dima-on
@@ -180,7 +180,7 @@ Creates a prompt containing the language directive, `BASE_INTRODACTION_CREATE_LI
180
180
  Execute the following command in an elevated PowerShell window to fetch and execute the installation script directly from the repository:
181
181
 
182
182
  ```powershell
183
- irm raw.githubusercontent.com/Drag-GameStudio/ADG/main/install | iex
183
+ irm raw.githubusercontent.com/Drag-GameStudio/ADG/main/install.ps1 | iex
184
184
  ```
185
185
 
186
186
  - `irm` (Invoke‑WebRequest) downloads the script content.
@@ -190,7 +190,7 @@ irm raw.githubusercontent.com/Drag-GameStudio/ADG/main/install | iex
190
190
  Run this one‑liner in a terminal to retrieve and execute the Linux installer:
191
191
 
192
192
  ```bash
193
- curl -sSL raw.githubusercontent.com/Drag-GameStudio/ADG/main/install | bash
193
+ curl -sSL raw.githubusercontent.com/Drag-GameStudio/ADG/main/install.sh | bash
194
194
  ```
195
195
 
196
196
  - `curl -sSL` silently follows redirects and outputs the script.
@@ -101,7 +101,7 @@ Creates a prompt containing the language directive, `BASE_INTRODACTION_CREATE_LI
101
101
  Execute the following command in an elevated PowerShell window to fetch and execute the installation script directly from the repository:
102
102
 
103
103
  ```powershell
104
- irm raw.githubusercontent.com/Drag-GameStudio/ADG/main/install | iex
104
+ irm raw.githubusercontent.com/Drag-GameStudio/ADG/main/install.ps1 | iex
105
105
  ```
106
106
 
107
107
  - `irm` (Invoke‑WebRequest) downloads the script content.
@@ -111,7 +111,7 @@ irm raw.githubusercontent.com/Drag-GameStudio/ADG/main/install | iex
111
111
  Run this one‑liner in a terminal to retrieve and execute the Linux installer:
112
112
 
113
113
  ```bash
114
- curl -sSL raw.githubusercontent.com/Drag-GameStudio/ADG/main/install | bash
114
+ curl -sSL raw.githubusercontent.com/Drag-GameStudio/ADG/main/install.sh | bash
115
115
  ```
116
116
 
117
117
  - `curl -sSL` silently follows redirects and outputs the script.
@@ -6,6 +6,7 @@ from ..config.config import Config, ProjectBuildConfig
6
6
  class StructureSettings:
7
7
  include_intro_links = True
8
8
  include_order = True
9
+ use_global_file = True
9
10
  max_doc_part_size = 5_000
10
11
 
11
12
  def load_settings(self, data: dict[str, any]):
@@ -26,10 +26,10 @@ def gen_doc(project_path: str,
26
26
 
27
27
 
28
28
  manager.generate_code_file()
29
- if config.pbc.use_global_file:
29
+ if structure_settings.use_global_file:
30
30
  manager.generate_global_info(compress_power=4)
31
31
 
32
- manager.generete_doc_parts(max_symbols=structure_settings.max_doc_part_size, with_global_file=config.pbc.use_global_file)
32
+ manager.generete_doc_parts(max_symbols=structure_settings.max_doc_part_size, with_global_file=structure_settings.use_global_file)
33
33
  manager.factory_generate_doc(DocFactory(*custom_modules))
34
34
  if structure_settings.include_order:
35
35
  manager.order_doc()
@@ -7,7 +7,6 @@ from ..factory.modules.intro import IntroLinks
7
7
  class ProjectBuildConfig:
8
8
  save_logs = False
9
9
  log_level = -1
10
- use_global_file = True
11
10
  def load_settings(self, data: dict[str, any]):
12
11
  for key, el in data.items():
13
12
  setattr(self, key, el)
@@ -86,7 +86,7 @@ class Manager:
86
86
  self.logger.log(InfoLog("Starting synchronous documentation generation by parts..."))
87
87
  result = gen_doc_parts(full_code_mix,
88
88
  max_symbols, self.sync_model, self.config.get_project_settings(),
89
- self.config.language, self.progress_bar)
89
+ self.config.language, self.progress_bar, global_info=global_file)
90
90
 
91
91
  self.logger.log(InfoLog("Documentation generation by parts completed."))
92
92
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "autodocgenerator"
3
- version = "0.9.2.5"
3
+ version = "0.9.2.8"
4
4
  description = "This Project helps you to create docs for your projects"
5
5
  authors = [
6
6
  {name = "dima-on", email = "sinica911@gmail.com"}