Skip to content

Commit 98e4c58

Browse files
committed
version 0.4.6
1 parent c83cb4f commit 98e4c58

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

Diff for: changelog.json

+10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
[
2+
{
3+
"version": "0.4.6",
4+
"downloadUrl": "https://github.com/engram-design/SuperTable/archive/0.4.6.zip",
5+
"date": "2016-03-16 20:00:00",
6+
"notes": [
7+
"[Fixed] Adding a new locale when using with a Craft Commerce product type results in a stuck background task [#58](https://github.com/engram-design/SuperTable/issues/58).",
8+
"[Fixed] Fix Table layout overflow issues with Matrix-in-SuperTable [#59](https://github.com/engram-design/SuperTable/issues/59)",
9+
"[Improved] Improvements to Feed Me support."
10+
]
11+
},
212
{
313
"version": "0.4.5",
414
"downloadUrl": "https://github.com/engram-design/SuperTable/archive/0.4.5.zip",

Diff for: supertable/SuperTablePlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function getName()
1414

1515
public function getVersion()
1616
{
17-
return '0.4.5';
17+
return '0.4.6';
1818
}
1919

2020
public function getSchemaVersion()

Diff for: supertable/fieldtypes/SuperTableFieldType.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -356,8 +356,7 @@ public function validate($blocks)
356356

357357
public function getSearchKeywords($value)
358358
{
359-
if ($value)
360-
{
359+
if ($value) {
361360
$keywords = array();
362361
$contentService = craft()->content;
363362

0 commit comments

Comments
 (0)