Skip to content

Commit 18042c9

Browse files
committed
Release 0.4.0
1 parent 071aaf4 commit 18042c9

File tree

6 files changed

+45
-26
lines changed

6 files changed

+45
-26
lines changed

dist/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

3-
## v0.3.0-dev
3+
4+
## v0.4.0
5+
- Rename to `grafana-worldmap-panel-ng` to allow side-by-side installation
6+
with upstream *Grafana Worldmap Panel 0.2.0*.
7+
8+
9+
## v0.3.0
410

511
- Add new mapping options `table+json` and `table+jsonp` to retrieve
612
location information from JSON endpoint, even for table data.

dist/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Worldmap Panel Plugin for Grafana
22

3-
**The [Grafana Worldmap Panel 0.3.0-dev series] ([changes]) is a work in progress, please don't use it in production yet. We are happy for testing and feedback.**
3+
**The [Grafana Worldmap Panel NG 0.4.0] ([changes]) is a work in progress, please don't use it in production yet. We are happy for testing and feedback.**
44

5-
[Grafana Worldmap Panel 0.3.0-dev series]: https://github.com/hiveeyes/grafana-worldmap-panel
5+
[Grafana Worldmap Panel NG 0.4.0]: https://github.com/hiveeyes/grafana-worldmap-panel
66
[changes]: https://github.com/hiveeyes/grafana-worldmap-panel/blob/develop/CHANGELOG.md
77

88
The Worldmap Panel is a tile map of the world that can be overlaid with circles representing data points from a query. It can be used with time series metrics, with geohash data from Elasticsearch or data in the Table format.

dist/module.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/partials/editor.html

Lines changed: 27 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,33 @@
1+
<!-- Development / Beta badge -->
2+
<span>
3+
4+
The
5+
<a href="https://github.com/hiveeyes/grafana-worldmap-panel" class="editor-link-color" target="_blank">
6+
Worldmap Panel NG
7+
</a>
8+
(<a href="https://github.com/hiveeyes/grafana-worldmap-panel/blob/develop/CHANGELOG.md" class="editor-link-color" target="_blank">changes</a>)
9+
is work in progress.
10+
11+
Enjoy
12+
<a href="https://community.hiveeyes.org/t/grafana-worldmap-panel-ng/1824" class="editor-link-color" target="_blank">following the development</a>
13+
and testing it.
14+
15+
We will be happy to receive feedback from the community at
16+
<a href="https://community.grafana.com/t/giving-the-grafana-worldmap-panel-some-love/17210" class="editor-link-color" target="_blank">[1]</a>,
17+
<a href="https://github.com/grafana/worldmap-panel/issues/197" class="editor-link-color" target="_blank">[2]</a>
18+
and
19+
<a href="https://github.com/hiveeyes/grafana-worldmap-panel" class="editor-link-color" target="_blank">[3]</a>.
20+
21+
Please don't use this software in production yet.
22+
23+
</span>
24+
<hr/>
25+
26+
127
<!-- Data mapping -->
228
<div class="editor-row">
329

4-
<h3 class="main-section-heading pull-left">Location source</h3>
5-
6-
<!-- Development / Beta badge -->
7-
<span class="pull-right" style="max-width: 450px; text-align: right">
8-
The
9-
<a href="https://github.com/hiveeyes/grafana-worldmap-panel" class="editor-link-color" target="_blank">
10-
Grafana Worldmap Panel 0.3.0-dev series
11-
</a>
12-
(<a href="https://github.com/hiveeyes/grafana-worldmap-panel/blob/develop/CHANGELOG.md" class="editor-link-color" target="_blank">changes</a>)
13-
is a work in progress, please don't use it in production yet.
14-
We are happy for testing and feedback.
15-
</span>
16-
<div style="clear: both"/>
17-
<br/>
30+
<h3 class="main-section-heading">Location source</h3>
1831

1932
<!-- Data source -->
2033
<div class="section editor-column">

dist/plugin.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"type": "panel",
3-
"name": "Worldmap Panel",
4-
"id": "grafana-worldmap-panel",
3+
"name": "Worldmap Panel NG",
4+
"id": "grafana-worldmap-panel-ng",
55

66
"info": {
7-
"description": "World Map panel for Grafana. Displays time series data or geohash data from Elasticsearch overlaid on a world map.",
7+
"description": "World Map panel for Grafana. Displays time series data or geohash data on a world map.",
88
"author": {
99
"name": "Grafana Labs",
1010
"url": "https://grafana.com"
@@ -15,16 +15,16 @@
1515
"large": "images/worldmap_logo.svg"
1616
},
1717
"links": [
18-
{"name": "Project site", "url": "https://github.com/grafana/worldmap-panel"},
19-
{"name": "MIT License", "url": "https://github.com/grafana/worldmap-panel/blob/master/LICENSE"}
18+
{"name": "Project site", "url": "https://github.com/hiveeyes/grafana-worldmap-panel"},
19+
{"name": "MIT License", "url": "https://github.com/hiveeyes/grafana-worldmap-panel/blob/master/LICENSE"}
2020
],
2121
"screenshots": [
2222
{"name": "World", "path": "images/worldmap-world.png"},
2323
{"name": "USA", "path": "images/worldmap-usa.png"},
2424
{"name": "Light Theme", "path": "images/worldmap-light-theme.png"}
2525
],
26-
"version": "0.3.0-dev6",
27-
"updated": "2019-05-06"
26+
"version": "0.4.0",
27+
"updated": "2019-06-28"
2828
},
2929

3030
"dependencies": {

0 commit comments

Comments
 (0)