From 57e2d2a10df05e01de36a97667cfd9d4b58fd3a7 Mon Sep 17 00:00:00 2001 From: Murray Wood Date: Fri, 18 Oct 2024 16:52:19 +0800 Subject: [PATCH] Prep for release --- _build/build.transport.php | 2 +- core/components/bigbrother/docs/changelog.txt | 10 ++++++++-- .../bigbrother/model/bigbrother/bigbrother.class.php | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/_build/build.transport.php b/_build/build.transport.php index a9166e0..b2c8288 100644 --- a/_build/build.transport.php +++ b/_build/build.transport.php @@ -26,7 +26,7 @@ function getSnippetContent($path, $name, $debug = false) { define('PKG_NAME', 'BigBrother'); define('PKG_NAMESPACE', strtolower(PKG_NAME)); define('PKG_VERSION', '3.0.0'); - define('PKG_RELEASE', 'rc1'); + define('PKG_RELEASE', 'pl'); /* load modx */ require_once dirname(dirname(__FILE__)) . '/config.core.php'; diff --git a/core/components/bigbrother/docs/changelog.txt b/core/components/bigbrother/docs/changelog.txt index 163d694..615c953 100755 --- a/core/components/bigbrother/docs/changelog.txt +++ b/core/components/bigbrother/docs/changelog.txt @@ -1,10 +1,16 @@ Big Brother 3.0.0-pl ---------------------- -Released on +Released on 2024-10-18 - Dashboard title shadow is now only applied in MODX 2.x (@sebastian-marinescu) [#158] - Reports now have a separate cache key per GA property, if multiple properties are used via user/system settings [ed73391] -- Fixed stand-alone widgets not loading their data if the main widget wasn't present. [b8ba83a] +- Fix stand-alone widgets not loading their data if the main widget wasn't present. [b8ba83a] +- Fix spacing and blank blocks in MODX 3 dashboard if widget was on a row taller than the inner content. [c98719f] +- Fix widget title text wrapping which caused widget action buttons to fall out of alignment. [15614b2] +- Fix incorrect (old) action for menu item in development bootstrap script [3abd998] +- Added date localisation and dates will now use the MODX manager_date_format setting when rendering. [92b340e] +- Fix typo in npm config and update chartjs-adapter-luxon filename to account for change in new version. [4a7852d] +- Update dependencies: chart.js to 3.9.1, luxon to 3.5.0, chartjs-adapter-luxon to 1.3.0, uglify-js to 3.17.0, google/analytics-admin to 0.10.0, google/analytics-data to 0.9.4, guzzlehttp/psr7 to 2.7.0 Big Brother 3.0.0-rc1 ---------------------- diff --git a/core/components/bigbrother/model/bigbrother/bigbrother.class.php b/core/components/bigbrother/model/bigbrother/bigbrother.class.php index c387423..2c41e5c 100755 --- a/core/components/bigbrother/model/bigbrother/bigbrother.class.php +++ b/core/components/bigbrother/model/bigbrother/bigbrother.class.php @@ -50,7 +50,7 @@ class BigBrother * * @var string */ - public $version = '3.0.0-rc1'; + public $version = '3.0.0-pl'; /** * An instance of the Google Cloud PHP SDK's OAuth2 object. Used to pass into various Client as `credentials`.