Skip to content

Commit

Permalink
v1.0.2
Browse files Browse the repository at this point in the history
- Added link to docs
- Added releases json for updates
  • Loading branch information
Tam committed Mar 29, 2016
1 parent a3efa33 commit 64f7856
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>
Expand Down
17 changes: 16 additions & 1 deletion SimpleMapPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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';
}

}
27 changes: 27 additions & 0 deletions releases.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
]

0 comments on commit 64f7856

Please sign in to comment.