Skip to content

Commit 6f77681

Browse files
committed
Improvements
1 parent aa481d4 commit 6f77681

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

doc/source/Getting_started/cli.rst

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,12 +206,12 @@ Use ``panels add`` to install PyAEDT panels into AEDT.
206206
207207
pyaedt panels add --personal-lib "C:\\Users\\username\\AppData\\Roaming\\Ansoft\\PersonalLib"
208208
pyaedt panels add --personal-lib "C:\\Users\\username\\AppData\\Roaming\\Ansoft\\PersonalLib" --reset
209-
pyaedt panels add --personal-lib "C:\\Users\\username\\AppData\\Roaming\\Ansoft\\PersonalLib" --light
209+
pyaedt panels add --personal-lib "C:\\Users\\username\\AppData\\Roaming\\Ansoft\\PersonalLib" --minimal
210210
211211
Useful options:
212212

213213
* ``--reset`` - Remove the existing ``Toolkits`` directory before installing
214-
* ``--light`` - Install only the light panel set (PyAEDT Console and Run Script)
214+
* ``--minimal`` - Install only the light panel set (PyAEDT Console and Run Script)
215215
* ``--skip-version-manager`` - Skip the Version Manager panel
216216
* ``--skip-extension-manager`` - Skip the Extension Manager panel
217217

@@ -232,12 +232,18 @@ Use the ``doc`` group to open online documentation and project resources:
232232
pyaedt doc github
233233
pyaedt doc issues
234234
pyaedt doc changelog
235-
pyaedt doc changelog 0.22.0
236235
pyaedt doc search hfss mesh
237236
237+
**Open the changelog for a specific version**
238+
239+
.. code-block:: bash
240+
241+
pyaedt doc changelog 0.26.1
242+
238243
If no subcommand is provided, ``pyaedt doc`` opens the documentation home page.
239244

240245

246+
241247
Test configuration
242248
------------------
243249

src/ansys/aedt/core/cli/panels.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def add_panels(
5959
),
6060
light: bool = typer.Option(
6161
False,
62-
"--light",
62+
"--minimal",
6363
help="Install only the light PyAEDT panel set (Console, Run Script, and optional manager panels)",
6464
),
6565
reset: bool = typer.Option(
@@ -78,7 +78,7 @@ def add_panels(
7878
--------
7979
pyaedt panels add --personal-lib "C:\\Users\\username\\AppData\\Roaming\\Ansoft\\PersonalLib"
8080
pyaedt panels add -p "/home/username/Ansoft/PersonalLib"
81-
pyaedt panels add --personal-lib "..." --light
81+
pyaedt panels add --personal-lib "..." --minimal
8282
pyaedt panels add --personal-lib "..." --reset # Delete Toolkits before installing
8383
pyaedt panels add # Interactive mode: select from installed versions
8484

0 commit comments

Comments
 (0)