Skip to content

Commit

Permalink
Release 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwire committed Jun 8, 2023
1 parent c0079b7 commit 1bb0833
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions 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.
Expand Down
8 changes: 4 additions & 4 deletions info.xml
Expand Up @@ -15,9 +15,9 @@
<url desc="Support">https://vedaconsulting.co.uk</url>
<url desc="Licensing">http://www.gnu.org/licenses/agpl-3.0.html</url>
</urls>
<releaseDate>2023-04-24</releaseDate>
<version>3.0-dev</version>
<develStage>beta</develStage>
<releaseDate>2023-06-08</releaseDate>
<version>3.0</version>
<develStage>stable</develStage>
<compatibility>
<ver>5.59</ver>
</compatibility>
Expand All @@ -40,7 +40,7 @@
<mixin>menu-xml@1.0.0</mixin>
<mixin>mgd-php@1.0.0</mixin>
<mixin>setting-php@1.0.0</mixin>
<mixin>smarty-v2@1.0.0</mixin>
<mixin>smarty-v2@1.0.1</mixin>
<mixin>entity-types-php@1.0.0</mixin>
</mixins>
<upgrader>CRM_Mosaico_Upgrader</upgrader>
Expand Down
4 changes: 2 additions & 2 deletions mosaico.civix.php
Expand Up @@ -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;
Expand Down

0 comments on commit 1bb0833

Please sign in to comment.