Skip to content

Commit b1ecf8f

Browse files
committed
Merge branch 'release/1.10.8'
2 parents ff36478 + e726c7d commit b1ecf8f

7 files changed

Lines changed: 2120 additions & 2006 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
**1.10.8 (2022-12-27)**
2+
3+
- De meegeleverde stylesheet geeft de instructietekst (filters, gevonden locaties) niet meer cursief weer voor verbetering toegankelijkheid.
4+
- Update naar PluginUpdateChecker v5.
5+
16
**1.10.7 (2022-12-27)**
27

38
- Wanneer filters op een kaart staan ingeschakeld met `enable_filter=1` maar geen van de locaties bevatten locatie eigenschappen dan werden alle bestaande eigenschappen in de filterlijst geplaatst. Het was de intentie om alleen de locatie eigenschappen die waren toegekend in deze lijst te plaatsen. Dit is nu opgelost.

package-lock.json

Lines changed: 2099 additions & 1988 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gh-datainmap",
3-
"version": "1.10.7",
3+
"version": "1.10.8",
44
"description": "",
55
"main": "index.js",
66
"scripts": {

plugins/gh-datainmap/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"require": {
33
"erusev/parsedown": "1.7.*",
4-
"yahnis-elsts/plugin-update-checker": "4.11" }
5-
}
4+
"yahnis-elsts/plugin-update-checker": "^5.0" }
5+
}

plugins/gh-datainmap/composer.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/gh-datainmap/gh-datainmap.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Data In Map
44
Plugin URI: https://github.com/OpenWebconcept/plugin-datainmap
55
Description: Data In Map is a plugin for displaying maps.
6-
Version: 1.10.7
6+
Version: 1.10.8
77
Requires at least: 5.0
88
Requires PHP: 7.2
99
Author: Gemeente Heerenveen
@@ -26,7 +26,7 @@
2626
*/
2727

2828
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
29-
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.7');
29+
if ( ! defined('GH_DIM_VERSION')) define('GH_DIM_VERSION', '1.10.8');
3030
if ( ! defined('GH_DIM_FILE')) define('GH_DIM_FILE', __FILE__);
3131
if ( ! defined('GH_DIM_DIR')) define('GH_DIM_DIR', dirname(__FILE__));
3232
if ( ! defined('GH_DIM_DEBUG')) define('GH_DIM_DEBUG', false);
@@ -140,7 +140,7 @@ function gh_dim_register_scripts() {
140140
}
141141
});
142142

143-
$myUpdateChecker = Puc_v4_Factory::buildUpdateChecker(
143+
$myUpdateChecker = YahnisElsts\PluginUpdateChecker\v5\PucFactory::buildUpdateChecker(
144144
'https://github.com/OpenWebconcept/plugin-datainmap',
145145
__FILE__,
146146
'gh-datainmap'

src/scss/style.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ $shadow-color: rgba(0, 0, 0, 0.5);
120120
.#{$descriptionClass} {
121121
margin:10px 0;
122122
@include font-size(12px);
123-
font-style:italic;
124123
}
125124
.#{checkboxClass} {
126125
&:first-child {
@@ -389,7 +388,6 @@ $shadow-color: rgba(0, 0, 0, 0.5);
389388
.gh-dim-features-listbox-description {
390389
margin:10px;
391390
@include font-size(12px);
392-
font-style:italic;
393391
}
394392

395393
ul {

0 commit comments

Comments
 (0)