Skip to content

Commit 64f7856

Browse files
committed
v1.0.2
- Added link to docs - Added releases json for updates
1 parent a3efa33 commit 64f7856

File tree

3 files changed

+55
-1
lines changed

3 files changed

+55
-1
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,18 @@ The field type will return an array containing `lat`, `lng`, and `address`. This
1212

1313
![How it looks](resources/preview.png)
1414

15+
## Changelog
16+
17+
### 1.0.2
18+
- Added link to docs
19+
- Added releases json for updates
20+
21+
### 1.0.1
22+
- Fixed: Hidden Lat/Lng/Address fields are now cleared when the Address Search input is empty.
23+
24+
### 1.0.0
25+
- Initial Release
26+
1527
---
1628

1729
Copyright © 2015 Ether Creative <[email protected]>

SimpleMapPlugin.php

+16-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,12 @@ public function getDescription()
2424

2525
public function getVersion()
2626
{
27-
return '1.0.1';
27+
return '1.0.2';
28+
}
29+
30+
public function getSchemaVersion()
31+
{
32+
return '0.0.1';
2833
}
2934

3035
public function getDeveloper()
@@ -37,4 +42,14 @@ public function getDeveloperUrl()
3742
return 'http://ethercreative.co.uk';
3843
}
3944

45+
public function getDocumentationUrl()
46+
{
47+
return 'https://github.com/ethercreative/SimpleMap/blob/master/README.md';
48+
}
49+
50+
public function getReleaseFeedUrl()
51+
{
52+
return 'https://raw.githubusercontent.com/ethercreative/SimpleMap/master/releases.json';
53+
}
54+
4055
}

releases.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[
2+
{
3+
"version": "1.0.0",
4+
"downloadUrl": "https://github.com/ethercreative/SimpleMap/archive/v1.0.0.zip",
5+
"date": "2015-12-09T10:00:00-08:00",
6+
"notes": [
7+
"Initial Release"
8+
]
9+
},
10+
{
11+
"version": "1.0.1",
12+
"downloadUrl": "https://github.com/ethercreative/SimpleMap/archive/v1.0.1.zip",
13+
"date": "2015-12-11T10:00:00-08:00",
14+
"notes": [
15+
"Fixed: Hidden Lat/Lng/Address fields are now cleared when the Address Search input is empty."
16+
]
17+
},
18+
{
19+
"version": "1.0.2",
20+
"downloadUrl": "https://github.com/ethercreative/SimpleMap/archive/v1.0.2.zip",
21+
"date": "2016-03-29T10:00:00-08:00",
22+
"notes": [
23+
"Added link to docs",
24+
"Added releases json for updates"
25+
]
26+
}
27+
]

0 commit comments

Comments
 (0)