From 618f6316bcd6c46f17cb57919df32c702066be7a Mon Sep 17 00:00:00 2001 From: "John Paul E. Balandan, CPA" Date: Fri, 5 May 2023 15:44:06 +0800 Subject: [PATCH] Update documentation --- user_guide_src/source/changelogs/v4.3.5.rst | 9 +++++++++ user_guide_src/source/cli/cli_generators.rst | 3 +-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/user_guide_src/source/changelogs/v4.3.5.rst b/user_guide_src/source/changelogs/v4.3.5.rst index 5473f6b2c808..d1bc87ff17f5 100644 --- a/user_guide_src/source/changelogs/v4.3.5.rst +++ b/user_guide_src/source/changelogs/v4.3.5.rst @@ -18,12 +18,21 @@ Message Changes Changes ******* +- **make:cell** When creating a new cell, the controller would always have the ``Cell`` suffixed to the class name. + For the view file, the final ``_cell`` is always removed. +- **Cells** For compatibility with previous versions, view filenames ending with ``_cell`` can still be + located by the ``Cell`` as long as auto-detection of view file is enabled (via setting the ``$view`` property + to an empty string). + Deprecations ************ Bugs Fixed ********** +- **make:cell** Fixed generating view files as classes. +- **make:cell** Fixed treatment of single word class input for case-insensitive OS. + See the repo's `CHANGELOG.md `_ for a complete list of bugs fixed. diff --git a/user_guide_src/source/cli/cli_generators.rst b/user_guide_src/source/cli/cli_generators.rst index d66255bd1f18..b76fd06a6a98 100644 --- a/user_guide_src/source/cli/cli_generators.rst +++ b/user_guide_src/source/cli/cli_generators.rst @@ -59,12 +59,11 @@ Usage: Argument: ========= -* ``name``: The name of the cell class. It should be in PascalCase. +* ``name``: The name of the cell class. It should be in PascalCase. **[REQUIRED]** Options: ======== * ``--namespace``: Set the root namespace. Defaults to value of ``APP_NAMESPACE``. -* ``--suffix``: Append the component suffix to the generated class name. * ``--force``: Set this flag to overwrite existing files on destination. make:command