autodocgenerator 0.9.2.5__py3-none-any.whl → 0.9.2.8__py3-none-any.whl
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/auto_runner/config_reader.py +1 -0
- autodocgenerator/auto_runner/run_file.py +2 -2
- autodocgenerator/config/config.py +0 -1
- autodocgenerator/manage.py +1 -1
- {autodocgenerator-0.9.2.5.dist-info → autodocgenerator-0.9.2.8.dist-info}/METADATA +3 -3
- {autodocgenerator-0.9.2.5.dist-info → autodocgenerator-0.9.2.8.dist-info}/RECORD +7 -7
- {autodocgenerator-0.9.2.5.dist-info → autodocgenerator-0.9.2.8.dist-info}/WHEEL +0 -0
|
@@ -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()
|
autodocgenerator/manage.py
CHANGED
|
@@ -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
|
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.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
autodocgenerator/__init__.py,sha256=6_gegt30rVn9hrMLoKz8JKGjEUnZUFTLWS_V9spHxHQ,619
|
|
2
|
-
autodocgenerator/auto_runner/config_reader.py,sha256=
|
|
3
|
-
autodocgenerator/auto_runner/run_file.py,sha256
|
|
4
|
-
autodocgenerator/config/config.py,sha256=
|
|
2
|
+
autodocgenerator/auto_runner/config_reader.py,sha256=xwQ3mscgEdV9rwnhRhP7mDZe3pRMRk7AplLa9jv-4zQ,1693
|
|
3
|
+
autodocgenerator/auto_runner/run_file.py,sha256=-RpcOQyNyKU5G-x6N38Oy0zQ15Y0LSBRCeIJJ2BSCZY,1985
|
|
4
|
+
autodocgenerator/config/config.py,sha256=ORBq7tZsQZ1e9bHbeIo4EUtSQfFr6FdkPOcppsqrD9g,1766
|
|
5
5
|
autodocgenerator/engine/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
autodocgenerator/engine/config/config.py,sha256=JfHdM8Ha116dsrdUbVE8K0dtOjPrgVWcV5xD98LqnsA,9377
|
|
7
7
|
autodocgenerator/engine/exceptions.py,sha256=pvohRlWSVBdZ8FkdafHBIVKxjbOBX6A0x4yZGHyuc2I,118
|
|
@@ -11,7 +11,7 @@ autodocgenerator/factory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
11
11
|
autodocgenerator/factory/base_factory.py,sha256=NsAWFoTO14XjJ2w9WseoBUb75ooYHEVVEnsW8iIDqSo,1155
|
|
12
12
|
autodocgenerator/factory/modules/general_modules.py,sha256=dLkQmGB5K1gGDTmYzBAC_WLxEhdC9KGRDc8i-DwKM_g,928
|
|
13
13
|
autodocgenerator/factory/modules/intro.py,sha256=0pPz9pL0WpD098J7CFvLC6g144LWQAHVLNHuxETY25c,606
|
|
14
|
-
autodocgenerator/manage.py,sha256=
|
|
14
|
+
autodocgenerator/manage.py,sha256=OUq1bA8-Pdb0bmiI_hW3-w_h7_j1qFXjNb769tnB06E,5599
|
|
15
15
|
autodocgenerator/postprocessor/custom_intro.py,sha256=FH4IfCmmyWzNVVpaK3iO1VIAqtAi2eeyeRiKBcUChmM,4547
|
|
16
16
|
autodocgenerator/postprocessor/sorting.py,sha256=KAPSdwUtxmYBMSajI7V7DVzpiFKpBspHLYMXTOXeZxM,2320
|
|
17
17
|
autodocgenerator/preprocessor/code_mix.py,sha256=KdBXqHtYkoi-g2f6Kq0IsT9jtkGvt2LWm7w9d-2I1AY,2502
|
|
@@ -21,6 +21,6 @@ autodocgenerator/preprocessor/spliter.py,sha256=0jwfPwRKY2dGDF-dmB4PdM-mHKVWVpiD
|
|
|
21
21
|
autodocgenerator/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
22
|
autodocgenerator/ui/logging.py,sha256=r0dWxYvShJjbJVM5P4NYmEvZybrwSGx8Th2ybLOCZuE,1684
|
|
23
23
|
autodocgenerator/ui/progress_base.py,sha256=20oYSYP5c5H_Mq_2aPwln97gLNIIYgmLY7osKT2wyws,1947
|
|
24
|
-
autodocgenerator-0.9.2.
|
|
25
|
-
autodocgenerator-0.9.2.
|
|
26
|
-
autodocgenerator-0.9.2.
|
|
24
|
+
autodocgenerator-0.9.2.8.dist-info/METADATA,sha256=jwzUBhah9mRpm2V1K3BmzvtTUBQLq96T_4JTII_KnoM,43628
|
|
25
|
+
autodocgenerator-0.9.2.8.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
|
|
26
|
+
autodocgenerator-0.9.2.8.dist-info/RECORD,,
|
|
File without changes
|