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.
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/PKG-INFO +3 -3
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/README.md +2 -2
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/auto_runner/config_reader.py +1 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/auto_runner/run_file.py +2 -2
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/config/config.py +0 -1
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/manage.py +1 -1
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/pyproject.toml +1 -1
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/__init__.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/__init__.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/config/config.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/exceptions.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/models/gpt_model.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/models/model.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/__init__.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/base_factory.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/modules/general_modules.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/modules/intro.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/postprocessor/custom_intro.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/postprocessor/sorting.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/code_mix.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/compressor.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/settings.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/spliter.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/ui/__init__.py +0 -0
- {autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/ui/logging.py +0 -0
- {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.
|
|
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.
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/auto_runner/run_file.py
RENAMED
|
@@ -26,10 +26,10 @@ def gen_doc(project_path: str,
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
manager.generate_code_file()
|
|
29
|
-
if
|
|
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=
|
|
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()
|
|
@@ -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
|
|
|
File without changes
|
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/config/config.py
RENAMED
|
File without changes
|
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/models/gpt_model.py
RENAMED
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/engine/models/model.py
RENAMED
|
File without changes
|
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/base_factory.py
RENAMED
|
File without changes
|
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/factory/modules/intro.py
RENAMED
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/postprocessor/custom_intro.py
RENAMED
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/postprocessor/sorting.py
RENAMED
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/code_mix.py
RENAMED
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/compressor.py
RENAMED
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/settings.py
RENAMED
|
File without changes
|
{autodocgenerator-0.9.2.5 → autodocgenerator-0.9.2.8}/autodocgenerator/preprocessor/spliter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|