From 1bb08334d48c6a2d700d5aaaa4d634b652b492c5 Mon Sep 17 00:00:00 2001 From: Matthew Wire Date: Thu, 8 Jun 2023 14:59:10 +0100 Subject: [PATCH] Release 3.0 --- docs/releasenotes.md | 7 +++++++ info.xml | 8 ++++---- mosaico.civix.php | 4 ++-- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/docs/releasenotes.md b/docs/releasenotes.md index 3325fd412..d90706ce4 100644 --- a/docs/releasenotes.md +++ b/docs/releasenotes.md @@ -1,6 +1,13 @@ **DO NOT DOWNLOAD DIRECTLY FROM GITHUB** Download via [the extensions directory](https://civicrm.org/extensions/email-template-builder) as there are additional packaging requirements not handled by github. +## Release 3.0 (2023-06-08) + +**Major change: Mosaico library and versafix template updated to latest versions (0.18.9, 1.3.4)** + +* **Update mosaico library to latest version (0.18).** +* [#593](https://github.com/veda-consulting-company/uk.co.vedaconsulting.mosaico/pull/593) Enhance api call replaceurls. + ## Release 2.12 (2023-04-22) * [#577](https://github.com/veda-consulting-company/uk.co.vedaconsulting.mosaico/pull/577) 5.60 compatibility. diff --git a/info.xml b/info.xml index cf11767fc..23fee09ea 100644 --- a/info.xml +++ b/info.xml @@ -15,9 +15,9 @@ https://vedaconsulting.co.uk http://www.gnu.org/licenses/agpl-3.0.html - 2023-04-24 - 3.0-dev - beta + 2023-06-08 + 3.0 + stable 5.59 @@ -40,7 +40,7 @@ menu-xml@1.0.0 mgd-php@1.0.0 setting-php@1.0.0 - smarty-v2@1.0.0 + smarty-v2@1.0.1 entity-types-php@1.0.0 CRM_Mosaico_Upgrader diff --git a/mosaico.civix.php b/mosaico.civix.php index 4069fb573..619eb5782 100644 --- a/mosaico.civix.php +++ b/mosaico.civix.php @@ -133,8 +133,8 @@ function _mosaico_civix_insert_navigation_menu(&$menu, $path, $item) { if (empty($path)) { $menu[] = [ 'attributes' => array_merge([ - 'label' => CRM_Utils_Array::value('name', $item), - 'active' => 1, + 'label' => $item['name'] ?? NULL, + 'active' => 1, ], $item), ]; return TRUE;