Skip to content

Commit 3c06807

Browse files
committed
Release 0.3.0-dev4
1 parent ef40c98 commit 3c06807

File tree

9 files changed

+484
-16031
lines changed

9 files changed

+484
-16031
lines changed

dist/CHANGELOG.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## v0.3.0-dev2
3+
## v0.3.0-dev
44

55
- Add new mapping options "table+json" and "table+jsonp" to retrieve
66
location information from JSON endpoint, even for table data.
@@ -11,12 +11,38 @@
1111
- Increase form field width for JSON endpoint url settings.
1212
- Fix conditional table options display in settings editor.
1313
- Add "showTableOptions()" conditional for signalling any type of table source.
14-
- Add software tests for options
14+
- Add software tests covering new control options
1515
- locationData: "table+json(p)"
1616
- showZoomControl: false
1717
- showAttribution: false
1818
- legendContainerSelector: ".shared-map-legend"
1919
- Add Makefile for macOS/Homebrew.
20+
- Fix popover labels text color for light theme (#169). Thanks, [@dtheb](https://github.com/dtheb).
21+
- Add clickthrough option for circles, use fixed url (#129). Thanks, [@ryft](https://github.com/ryft).
22+
- Add clickthrough option for circles, use urls from data (#190). Thanks, [@leonhardhaas](https://github.com/leonhardhaas).
23+
- Combine both clickthrough link implementations #129 and #190,
24+
add basic variable interpolation based on keys from `dataPoint`.
25+
- Introduce the regular Grafana templating mechanism for interpolating variables
26+
into clickthrough links. As we are now interpolating dashboard **and** `dataPoint`
27+
variables, the latter one will get prefixed with "point_" to avoid collisions.
28+
- Apply Grafana-style variable interpolation to **all** panel settings.
29+
- Add query parameters into the interpolation dictionary, prefixed by `request_`.
30+
- Use request parameters prefixed with "panel-" to optionally override the
31+
respective control options.
32+
- Improve map center control handling.
33+
- Improve clickthroughURL interpolation.
34+
- Add control option `clickthroughOptions.windowName`
35+
to open clickthrough target in designated window.
36+
- Improve centering on “Last Geohash”
37+
- Add support for "First Geohash" centering (#156). Thanks, Fabien.
38+
- Add control options `mapFitData` and `mapZoomByRadius`.
39+
- Repaint user interface.
40+
- Refactor machinery and user interface.
41+
- Add options `ignoreEmptyGeohashValues` and `ignoreInvalidGeohashValues`.
42+
- Add `ignoreEscapeKey` option.
43+
- Add `hideTimepickerNavigation` option.
44+
- Add `circleOptions.strokeEnabled` and `circleOptions.strokeWeight`.
45+
- Add options `customAttribution` and `customAttributionText`.
2046

2147
## v0.2.0
2248

dist/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
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.**
4+
5+
[Grafana Worldmap Panel 0.3.0-dev series]: https://github.com/hiveeyes/grafana-worldmap-panel
6+
[changes]: https://github.com/hiveeyes/grafana-worldmap-panel/blob/develop/CHANGELOG.md
7+
38
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.
49

510
![Worldmap](https://raw.githubusercontent.com/grafana/worldmap-panel/54f83cfdc7339fee02df00933422c35630677330/src/images/worldmap-world.png)
@@ -208,7 +213,7 @@ Supported Databases:
208213

209214
- Warp 10 via [grafana-warp10-datasource](https://github.com/cityzendata/grafana-warp10) plugin
210215

211-
It supports any datasource capable of generating a JSON response with a a custom list of locations (the same format that for the JSON enpoint).
216+
It supports any datasource capable of generating a JSON response with a custom list of locations (the same format that for the JSON endpoint).
212217

213218
### Map Data Options
214219

dist/css/worldmap-panel.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,20 @@
4040
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
4141
color: #d8d9da !important;
4242
}
43+
44+
.main-section-heading {
45+
margin-bottom: 1.25rem;
46+
}
47+
48+
.editor-column {
49+
max-width: 30%;
50+
margin-right: 2rem;
51+
}
52+
53+
.editor-link-color {
54+
color: #2846a1;
55+
}
56+
57+
.gf-form-subgroup {
58+
margin-bottom: 1rem;
59+
}

dist/css/worldmap.light.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
background-color: #ececec;
44
color: #000 !important;
55
}
6+
7+
.gf-form-muted {
8+
background-color: #dde4ed;
9+
}

dist/module.js

Lines changed: 5 additions & 15842 deletions
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: 419 additions & 181 deletions
Large diffs are not rendered by default.

dist/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
{"name": "USA", "path": "images/worldmap-usa.png"},
2424
{"name": "Light Theme", "path": "images/worldmap-light-theme.png"}
2525
],
26-
"version": "0.3.0-dev3",
27-
"updated": "2019-04-24"
26+
"version": "0.3.0-dev4",
27+
"updated": "2019-05-06"
2828
},
2929

3030
"dependencies": {

src/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
{"name": "USA", "path": "images/worldmap-usa.png"},
2424
{"name": "Light Theme", "path": "images/worldmap-light-theme.png"}
2525
],
26-
"version": "0.3.0-dev3",
27-
"updated": "2019-04-24"
26+
"version": "0.3.0-dev4",
27+
"updated": "2019-05-06"
2828
},
2929

3030
"dependencies": {

0 commit comments

Comments
 (0)