Skip to content

Commit

Permalink
version 1.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Apr 13, 2016
1 parent 6dc2d0c commit 4efdde6
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
10 changes: 10 additions & 0 deletions changelog.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
[
{
"version": "1.4.10",
"downloadUrl": "https://github.com/engram-design/FeedMe/archive/1.4.10.zip",
"date": "2016-04-14 06:30:00",
"notes": [
"[Fixed] Fixed issue for repeatable fields containing empty values (table fields).",
"[Improved] FeedUrl attribute stored as `TEXT` column type to allow for longer URLs.",
"[Improved] Improved JSON parsing to use Yii's JsonHelper class, with better logging when failing."
]
},
{
"version": "1.4.9",
"downloadUrl": "https://github.com/engram-design/FeedMe/archive/1.4.9.zip",
Expand Down
4 changes: 2 additions & 2 deletions feedme/FeedMePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public function getName()

public function getVersion()
{
return '1.4.9';
return '1.4.10';
}

public function getSchemaVersion()
{
return '1.1.0';
return '1.2.0';
}

public function getDeveloper()
Expand Down
12 changes: 12 additions & 0 deletions feedme/migrations/m160414_000000_feedMe_urlTextColumn.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php
namespace Craft;

class m160414_000000_feedMe_urlTextColumn extends BaseMigration
{
public function safeUp()
{
craft()->db->createCommand()->alterColumn('feedme_feeds', 'feedUrl', ColumnType::Text);

return true;
}
}
2 changes: 1 addition & 1 deletion feedme/records/FeedMe_FeedRecord.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ protected function defineAttributes()
{
return array(
'name' => array(AttributeType::String, 'required' => true),
'feedUrl' => array(AttributeType::Uri, 'required' => true),
'feedUrl' => array(AttributeType::Uri, 'required' => true, 'column' => ColumnType::Text),
'feedType' => array(AttributeType::Enum, 'required' => true, 'values' => array(
FeedMe_FeedType::XML,
FeedMe_FeedType::RSS,
Expand Down

0 comments on commit 4efdde6

Please sign in to comment.