From 64f7856af76ec7fcb8214e23d7b43dd06dc83c72 Mon Sep 17 00:00:00 2001 From: Tam <hi@tam.sx> Date: Tue, 29 Mar 2016 16:00:43 +0100 Subject: [PATCH] v1.0.2 - Added link to docs - Added releases json for updates --- README.md | 12 ++++++++++++ SimpleMapPlugin.php | 17 ++++++++++++++++- releases.json | 27 +++++++++++++++++++++++++++ 3 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 releases.json diff --git a/README.md b/README.md index 13f1471..fef3d7d 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,18 @@ The field type will return an array containing `lat`, `lng`, and `address`. This ![How it looks](resources/preview.png) +## Changelog + +### 1.0.2 +- Added link to docs +- Added releases json for updates + +### 1.0.1 +- Fixed: Hidden Lat/Lng/Address fields are now cleared when the Address Search input is empty. + +### 1.0.0 +- Initial Release + --- Copyright © 2015 Ether Creative <hello@ethercreative.co.uk> diff --git a/SimpleMapPlugin.php b/SimpleMapPlugin.php index d1cc51e..38c6ef6 100644 --- a/SimpleMapPlugin.php +++ b/SimpleMapPlugin.php @@ -24,7 +24,12 @@ public function getDescription() public function getVersion() { - return '1.0.1'; + return '1.0.2'; + } + + public function getSchemaVersion() + { + return '0.0.1'; } public function getDeveloper() @@ -37,4 +42,14 @@ public function getDeveloperUrl() return 'http://ethercreative.co.uk'; } + public function getDocumentationUrl() + { + return 'https://github.com/ethercreative/SimpleMap/blob/master/README.md'; + } + + public function getReleaseFeedUrl() + { + return 'https://raw.githubusercontent.com/ethercreative/SimpleMap/master/releases.json'; + } + } \ No newline at end of file diff --git a/releases.json b/releases.json new file mode 100644 index 0000000..c25e6ff --- /dev/null +++ b/releases.json @@ -0,0 +1,27 @@ +[ + { + "version": "1.0.0", + "downloadUrl": "https://github.com/ethercreative/SimpleMap/archive/v1.0.0.zip", + "date": "2015-12-09T10:00:00-08:00", + "notes": [ + "Initial Release" + ] + }, + { + "version": "1.0.1", + "downloadUrl": "https://github.com/ethercreative/SimpleMap/archive/v1.0.1.zip", + "date": "2015-12-11T10:00:00-08:00", + "notes": [ + "Fixed: Hidden Lat/Lng/Address fields are now cleared when the Address Search input is empty." + ] + }, + { + "version": "1.0.2", + "downloadUrl": "https://github.com/ethercreative/SimpleMap/archive/v1.0.2.zip", + "date": "2016-03-29T10:00:00-08:00", + "notes": [ + "Added link to docs", + "Added releases json for updates" + ] + } +] \ No newline at end of file