From 1ceaa010624a17deaafde82aea52c34289179314 Mon Sep 17 00:00:00 2001 From: swierczek <2423727+swierczek@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:03:34 -0600 Subject: [PATCH 1/3] Update constants.md with examples --- docs/development/constants.md | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/docs/development/constants.md b/docs/development/constants.md index 47093a99a..5cdf6efe1 100755 --- a/docs/development/constants.md +++ b/docs/development/constants.md @@ -15,20 +15,19 @@ The ExpressionEngine core defines a variety of constants to ensure consistency i ## Path Constants -- `SELF` - Name of the bootstrap file -- `FCPATH` - Path to the bootstrap file -- `SYSDIR` - Name of the system directory -- `SYSPATH` - Path of the system directory -- `APPPATH` and `BASEPATH` - Path to the `system/ee/legacy` directory -- `PATH_ADDONS` - Path to the first-party add-ons directory -- `PATH_THEMES` - Path to the themes directory -- `PATH_RTE` - Path to the first party RTE tools directory -- `PATH_MBR_THEMES` - Path to the member themes directory -- `PATH_CP_GBL_IMG` - Path to the global image directory -- `PATH_JAVASCRIPT` - Path to the javascript directory -- `PATH_JQUERY` - Path to the jQuery directory -- `PATH_THIRD` - Path to third-party add-ons directory -- `PATH_THIRD_THEMES` - Path to the third-party themes directory +- `SELF` - Name of the admin file (e.g. `admin.php`) +- `FCPATH` - Path to the admin file (e.g. `/var/www/html/website.com/public/`) +- `SYSDIR` - Name of the system directory (e.g. `system`) +- `SYSPATH` - Path of the system directory (e.g. `/var/www/html/website.com/system/`) +- `APPPATH` and `BASEPATH` - Path to the `system/ee/legacy` directory (e.g. `/var/www/html/website.com/system/ee/legacy/`) +- `PATH_ADDONS` - Path to the first-party add-ons directory (e.g. `/var/www/html/website.com/system/ee/ExpressionEngine/Addons/`) +- `PATH_THEMES` - Path to the themes directory (e.g. `/var/www/html/website.com/public/themes/ee/`) +- `PATH_MBR_THEMES` - Path to the member themes directory (e.g. `/var/www/html/website.com/public/themes/ee/member/`) +- `PATH_CP_GBL_IMG` - Path to the global image directory (e.g. `https://website.com/themes/ee/asset/img/`) +- `PATH_JAVASCRIPT` - Path to the javascript directory (e.g. `/var/www/html/website.com/public/themes/ee/asset/javascript/compressed/`) +- `PATH_JQUERY` - Path to the jQuery directory. (e.g. `/var/www/html/website.com/public/themes/ee/asset/javascript/compressed/jquery/`) +- `PATH_THIRD` - Path to third-party add-ons directory (e.g. `/var/www/html/website.com/system/user/addons/`) +- `PATH_THIRD_THEMES` - Path to the third-party themes directory (e.g. `/var/www/html/website.com/public/themes/user/`) ## Version Constants From a8c15d28d45245d8b965376a8f6e8e6fcf60fc15 Mon Sep 17 00:00:00 2001 From: swierczek <2423727+swierczek@users.noreply.github.com> Date: Fri, 20 Dec 2024 15:16:51 -0600 Subject: [PATCH 2/3] Formatting changes --- docs/development/constants.md | 39 +++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 13 deletions(-) diff --git a/docs/development/constants.md b/docs/development/constants.md index 5cdf6efe1..73f72e20a 100755 --- a/docs/development/constants.md +++ b/docs/development/constants.md @@ -15,19 +15,32 @@ The ExpressionEngine core defines a variety of constants to ensure consistency i ## Path Constants -- `SELF` - Name of the admin file (e.g. `admin.php`) -- `FCPATH` - Path to the admin file (e.g. `/var/www/html/website.com/public/`) -- `SYSDIR` - Name of the system directory (e.g. `system`) -- `SYSPATH` - Path of the system directory (e.g. `/var/www/html/website.com/system/`) -- `APPPATH` and `BASEPATH` - Path to the `system/ee/legacy` directory (e.g. `/var/www/html/website.com/system/ee/legacy/`) -- `PATH_ADDONS` - Path to the first-party add-ons directory (e.g. `/var/www/html/website.com/system/ee/ExpressionEngine/Addons/`) -- `PATH_THEMES` - Path to the themes directory (e.g. `/var/www/html/website.com/public/themes/ee/`) -- `PATH_MBR_THEMES` - Path to the member themes directory (e.g. `/var/www/html/website.com/public/themes/ee/member/`) -- `PATH_CP_GBL_IMG` - Path to the global image directory (e.g. `https://website.com/themes/ee/asset/img/`) -- `PATH_JAVASCRIPT` - Path to the javascript directory (e.g. `/var/www/html/website.com/public/themes/ee/asset/javascript/compressed/`) -- `PATH_JQUERY` - Path to the jQuery directory. (e.g. `/var/www/html/website.com/public/themes/ee/asset/javascript/compressed/jquery/`) -- `PATH_THIRD` - Path to third-party add-ons directory (e.g. `/var/www/html/website.com/system/user/addons/`) -- `PATH_THIRD_THEMES` - Path to the third-party themes directory (e.g. `/var/www/html/website.com/public/themes/user/`) +- `SELF` - Name of the admin file + - Example: `admin.php` +- `FCPATH` - Path to the admin file + - Example: `/var/www/html/website.com/public/` +- `SYSDIR` - Name of the system directory + - Example: `system` +- `SYSPATH` - Path of the system directory + - Example: `/var/www/html/website.com/system/` +- `APPPATH` and `BASEPATH` - Path to the `system/ee/legacy` directory + - Example: `/var/www/html/website.com/system/ee/legacy/` +- `PATH_ADDONS` - Path to the first-party add-ons directory + - Example: `/var/www/html/website.com/system/ee/ExpressionEngine/Addons/` +- `PATH_THEMES` - Path to the themes directory + - Example: `/var/www/html/website.com/public/themes/ee/` +- `PATH_MBR_THEMES` - Path to the member themes directory + - Example: `/var/www/html/website.com/public/themes/ee/member/` +- `PATH_CP_GBL_IMG` - Path to the global image directory + - Example: `https://website.com/themes/ee/asset/img/` +- `PATH_JAVASCRIPT` - Path to the javascript directory + - Example: `/var/www/html/website.com/public/themes/ee/asset/javascript/compressed/` +- `PATH_JQUERY` - Path to the jQuery directory + - Example: `/var/www/html/website.com/public/themes/ee/asset/javascript/compressed/jquery/` +- `PATH_THIRD` - Path to third-party add-ons directory + - Example: `/var/www/html/website.com/system/user/addons/` +- `PATH_THIRD_THEMES` - Path to the third-party themes directory + - Example: `/var/www/html/website.com/public/themes/user/` ## Version Constants From 1175606632ae26bce2872d2d8de9b0580d1e4ba8 Mon Sep 17 00:00:00 2001 From: Bryan Nielsen Date: Fri, 2 May 2025 11:10:43 -0400 Subject: [PATCH 3/3] Version 7.5.11 --- docs/installation/changelog.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/docs/installation/changelog.md b/docs/installation/changelog.md index 46fc6a3c4..1fa60d8a0 100755 --- a/docs/installation/changelog.md +++ b/docs/installation/changelog.md @@ -8,6 +8,39 @@ --> # ExpressionEngine v7 Change Log +## Version 7.5.11 +(Release: May 5th, 2025) + +
+
+ +
+
+ +**Bug Fixes** 💃🐛 + +- Resolved [#4798](https://github.com/ExpressionEngine/ExpressionEngine/issues/4798) where RedactorX text in dark mode is unreadable +- Resolved [#4793](https://github.com/ExpressionEngine/ExpressionEngine/issues/4793) where member password reset email could have a repeated forward slash in the reset_url +- Resolved [#4344](https://github.com/ExpressionEngine/ExpressionEngine/issues/4344) where Structure links in RTE could have been missing a trailing slash +- Resolved [#4783](https://github.com/ExpressionEngine/ExpressionEngine/issues/4783) where sometimes not all custom fields were fetched when using SQL caching +- Resolved [#4004](https://github.com/ExpressionEngine/ExpressionEngine/issues/4004) where CRLF setting was not properly set to handle quoted-printable emails +- Resolved [#4632](https://github.com/ExpressionEngine/ExpressionEngine/issues/4632) where test email was not sent using some SMTP servers +- Resolved [#3768](https://github.com/ExpressionEngine/ExpressionEngine/issues/3768) where `{index}` and `{absolute_index}` variables were missing from `{exp:channel:entries}` tag +- Resolved [#4762](https://github.com/ExpressionEngine/ExpressionEngine/issues/4762) where in some cases it was not possible to change a site's 404 template +- Resolved [#4697](https://github.com/ExpressionEngine/ExpressionEngine/issues/4697) where replacing a file did not update dimensions info +- Resolved [#4366](https://github.com/ExpressionEngine/ExpressionEngine/issues/4366) where Multiple "Save" clicks create multiple identical entries +- Resolved [#4368](https://github.com/ExpressionEngine/ExpressionEngine/issues/4368) where there is no "Edit entry" button on a newly added related entry +- Resolved [#4185](https://github.com/ExpressionEngine/ExpressionEngine/issues/4185) where the page scrolled up when the file field modal window was opened +- Updated textarea validation to send fewer AJAX requests +- Added ability to edit metadata on images/files for Pro Variables page +- Standardized forgotten password redirect behavior in Member module + ## Version 7.5.10 (Release: April 3rd, 2025)