From 58e1a28ee4401f0923aac402595bd44bcebc44cc Mon Sep 17 00:00:00 2001 From: Thomas Templeton Date: Fri, 22 Feb 2019 20:52:23 +1100 Subject: [PATCH] Release v1.5.1 --- CHANGELOG.md | 10 +++++++++- neo/NeoPlugin.php | 2 +- package.json | 2 +- releases.json | 25 +++++++++++++++++++++++++ 4 files changed, 36 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61a1afe5..b5f5776d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ ## Changelog +### v1.5.1 +- `Added` Changed developer to Spicy Web +- `Fixed` Fixed issue with blocks disappearing on elements with more than one Neo field +- `Fixed` Fixed issue with lightswitches not working on new blocks +- `Fixed` Fixed flickering Reasons modal when using Reasons v1.0.11 +- `Fixed` Fixed disabled blocks showing in live preview +- `Fixed` Fixed issue where the handle of an existing block type was changing when editing the name +- `Fixed` Clean up block structures if duplicates exist, which could cause blocks either to disappear or to all nest within a newly-added block + ### v1.5.0 - `Added` New icon 😎 - `Added` Copy and paste functionality for blocks (replaces the Duplicate block option) @@ -11,7 +20,6 @@ - `Fixed` Fixed issue where field types like Matrix used within blocks could not clean up properly if that block was deleted, leading to stranded Matrix blocks left in the database - `Fixed` Fixed issue with stacking block criteria model filters in Live Preview sometimes not showing the right results - `Fixed` Fixed issue with translated relational fields (eg. Asset field) inside translated Neo fields not saving properly on newly added blocks -- `Fixed` Front-end Garnish library console warning no longer shows #### v1.4.1 - `Added` Added configuration options to enable/disable certain optimisations diff --git a/neo/NeoPlugin.php b/neo/NeoPlugin.php index ecaf4743..bfc911c6 100644 --- a/neo/NeoPlugin.php +++ b/neo/NeoPlugin.php @@ -22,7 +22,7 @@ public function getDescription() public function getVersion() { - return '1.5.0'; + return '1.5.1'; } public function getCraftMinimumVersion() diff --git a/package.json b/package.json index 7b0893d1..aa7eee43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "craft-neo", - "version": "1.5.0", + "version": "1.5.1", "description": "A Matrix-like field type that uses existing fields", "main": "webpack.config.js", "scripts": { diff --git a/releases.json b/releases.json index 1e579dc2..2a772df5 100644 --- a/releases.json +++ b/releases.json @@ -1,4 +1,29 @@ [ + { + "version": "1.5.1", + "downloadUrl": "https://github.com/spicywebau/craft-neo/archive/1.5.1.zip", + "date": "2019-02-22T20:52:00+11:00", + "notes": [ + "[Added] Changed developer to Spicy Web", + "[Fixed] Fixed issue with blocks disappearing on elements with more than one Neo field", + "[Fixed] Fixed issue with lightswitches not working on new blocks", + "[Fixed] Fixed flickering Reasons modal when using Reasons v1.0.11", + "[Fixed] Fixed disabled blocks showing in live preview", + "[Fixed] Fixed issue where the handle of an existing block type was changing when editing the name", + "[Fixed] Clean up block structures if duplicates exist, which could cause blocks either to disappear or to all nest within a newly-added block", + "# Changes from 1.5.0", + "[Added] New icon", + "[Added] Copy and paste functionality for blocks (replaces the Duplicate block option)", + "[Added] The [CpFieldLinks](https://github.com/mmikkel/CpFieldLinks-Craft) plugin is now supported in blocks", + "[Added] Added `craft.neo.blocks()` template query function to query for site-wide Neo blocks, much like entries and other elements (thanks @intoeetive)", + "[Improved] Saving new entries will now copy Neo contents to all other locales", + "[Improved] Added owner property to neoblock to use with dynamic assets path", + "[Fixed] Generating keywords for blocks now only iterates the fields of that block, fixing issues with generating keywords on old fields and third-party plugin conflicts", + "[Fixed] Fixed issue where field types like Matrix used within blocks could not clean up properly if that block was deleted, leading to stranded Matrix blocks left in the database", + "[Fixed] Fixed issue with stacking block criteria model filters in Live Preview sometimes not showing the right results", + "[Fixed] Fixed issue with translated relational fields (eg. Asset field) inside translated Neo fields not saving properly on newly added blocks" + ] + }, { "version": "1.4.1", "downloadUrl": "https://github.com/benjamminf/craft-neo/archive/1.4.1.zip",