diff --git a/docs/channels/channel-form/overview.md b/docs/channels/channel-form/overview.md index 587f57e9c..a5760167c 100755 --- a/docs/channels/channel-form/overview.md +++ b/docs/channels/channel-form/overview.md @@ -265,10 +265,14 @@ If you have chosen [inline error handling](#error_handling), you can display the Display a custom field's label. +You may also use `{label:title}` to display the label for the title field as defined in Channel settings. + ### `{instructions:my_field_name}` Display a custom field's instructions. +You may also use `{instructions:title}` to display the instructions for the title field as defined in Channel settings. + ### `{selected_option:my_field_name}` In an edit form, display the selected option for the specified custom field. diff --git a/docs/comment/entries.md b/docs/comment/entries.md index 59a4c6794..be2340ee5 100755 --- a/docs/comment/entries.md +++ b/docs/comment/entries.md @@ -32,6 +32,12 @@ NOTE: **Important:** The Comment Entries tag should **not** be nested inside of author_id="5" +### `backspace=` + +The `backspace=` parameter will remove characters, including spaces and line breaks, from the last iteration of the tag pair: + + backspace="7" + ### `channel=` channel="which" diff --git a/docs/fieldtypes/file.md b/docs/fieldtypes/file.md index 84f682e9b..a244d3c37 100755 --- a/docs/fieldtypes/file.md +++ b/docs/fieldtypes/file.md @@ -276,6 +276,20 @@ Convert the image to WEBP format. Additionally all the `:resize` manipulations c | master_dim | `auto`/`width`/`height` | `auto`| Master dimension when only width of height is specified | +### `:avif` + + {news_image:avif} + +Convert the image to AVIF format. Additionally all the `:resize` manipulations can be applied + +| Parameter | Values | Default | Description | +| --------- | ------- | ---------- | -------------------------------------- | +| width | `Number` | | Width to crop to, px | +| height | `Number` | | Height to crop to, px | +| quality | `0`-`100`| `75`| Image quality, % | +| maintain_ratio | `y` / `n` | `y`| Keep image ratio (yes/no) | +| master_dim | `auto`/`width`/`height` | `auto`| Master dimension when only width of height is specified | + ### `:resize_crop` {news_image:resize_crop resize:width="300" crop:width="100"} diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index 410d16414..dc14e48d8 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -8,6 +8,46 @@ --> # ExpressionEngine v7 Change Log +## Version 7.5.16 +(Release: September 15th, 2025) +
+
+ +
+
+ + +**Bug Fixes** �� + +- Resolved [#4921](https://github.com/ExpressionEngine/ExpressionEngine/issues/4921) where saving File model from CLI was producing an error [#4949](https://github.com/ExpressionEngine/ExpressionEngine/pull/4949) +- Resolved [#4918](https://github.com/ExpressionEngine/ExpressionEngine/issues/4918) where some queries were duplicated when using Member field inside of a Grid [#4948](https://github.com/ExpressionEngine/ExpressionEngine/pull/4948) +- Resolved issue where the file info was not cached [#4870](https://github.com/ExpressionEngine/ExpressionEngine/pull/4870) +- Resolved [#3718](https://github.com/ExpressionEngine/ExpressionEngine/issues/3718) where the ability to edit entries from Relationship field was misbehaving sometimes [#4828](https://github.com/ExpressionEngine/ExpressionEngine/pull/4828) + +**Enhancements** ✨ + +- Added title label and instruction tags to Channel Form [#4906](https://github.com/ExpressionEngine/ExpressionEngine/pull/4906) +- Added support for AVIF images in File Manager [#4837](https://github.com/ExpressionEngine/ExpressionEngine/pull/4837) +- Made "View Page" link in Structure open in a new tab [#4383](https://github.com/ExpressionEngine/ExpressionEngine/pull/4383) +- Changed template no-access language [#4956](https://github.com/ExpressionEngine/ExpressionEngine/pull/4956) +- Added the `backspace` parameter to `{exp:channel:entries}` tag [#4954](https://github.com/ExpressionEngine/ExpressionEngine/pull/4954) +- Allowed Upload Destination adapter to be overridden in config [#4946](https://github.com/ExpressionEngine/ExpressionEngine/pull/4946) +- Added new CLI commands and JSON output options [#4969](https://github.com/ExpressionEngine/ExpressionEngine/pull/4969) +- Added additional HTTP status codes [#4976](https://github.com/ExpressionEngine/ExpressionEngine/pull/4976), including 422 [#4975](https://github.com/ExpressionEngine/ExpressionEngine/pull/4975) + +**Developers** 💻 + +- Added extension hooks for the Updater service [#4951](https://github.com/ExpressionEngine/ExpressionEngine/pull/4951) +- Added tests for Structure module [#4957](https://github.com/ExpressionEngine/ExpressionEngine/pull/4957) + ## Version 7.5.15 (Release: August 20th, 2025)