From f27967569494eaa992ca2dda34ea0c0da2db9afe Mon Sep 17 00:00:00 2001 From: Jason Coward Date: Tue, 18 Feb 2025 08:41:14 -0700 Subject: [PATCH] MODX Revolution 3.1.1-pl --- _build/build.xml | 2 +- core/docs/changelog.txt | 16 ++++++++++++++-- core/docs/version.inc.php | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/_build/build.xml b/_build/build.xml index ffcf14f8a7..6cc922beee 100644 --- a/_build/build.xml +++ b/_build/build.xml @@ -21,7 +21,7 @@ - + diff --git a/core/docs/changelog.txt b/core/docs/changelog.txt index 81356461da..b199bfb2e8 100644 --- a/core/docs/changelog.txt +++ b/core/docs/changelog.txt @@ -2,9 +2,21 @@ This file shows the changes in recent releases of MODX. The most current release is usually the development release, and is only shown to give an idea of what's currently in the pipeline. -MODX Revolution 3.1.1-pl (TBD) +MODX Revolution 3.1.1-pl (February 18, 2025) ==================================== - +- Fallback for dashboard widgets in custom manager theme (#16705) +- Deprecate modUserProfile->sessionid and do not set value (#16697) +- Update superboxselect.js to version 1.6 and add HTML entity encoding (#16702) +- Fix manager menu for sql_mode "ANSI_QUOTES" (#16680) +- Fix namespaces getlist processor when cache_db is active (#16681) +- Fix Remember Me login feature (#16685) +- Fix datetime settings keys (#16687) +- Fix navbar z-index (#16690) +- Fix typos in access Lexicon (#16689) +- Fix for MODX updates widget (#16694) +- Fix visibility of the Install button in packages grid (#16675) +- Fix links not clickable on 3th level (#16671) +- Fix display of notification when User password is created/updated (#16668) MODX Revolution 3.1.0-pl (December 18, 2024) ==================================== diff --git a/core/docs/version.inc.php b/core/docs/version.inc.php index 72fd99203e..b03549e031 100644 --- a/core/docs/version.inc.php +++ b/core/docs/version.inc.php @@ -3,7 +3,7 @@ $v['version']= '3'; // Current version. $v['major_version']= '1'; // Current major version. $v['minor_version']= '1'; // Current minor version. -$v['patch_level']= 'dev'; // Current patch level. +$v['patch_level']= 'pl'; // Current patch level. $v['code_name']= 'Revolution'; // Current codename. $v['distro']= '@git@'; $v['full_version']= $v['version'] . ($v['major_version'] ? ".{$v['major_version']}" : ".0") . ($v['minor_version'] ? ".{$v['minor_version']}" : ".0") . ($v['patch_level'] ? "-{$v['patch_level']}" : "");