Skip to content

Commit

Permalink
Final gutenberg compatibility note
Browse files Browse the repository at this point in the history
  • Loading branch information
dshanske committed Dec 20, 2018
1 parent 91c11bb commit 0f7b1ec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion includes/class-loc-metabox.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ public static function add_meta_boxes() {
array( 'Loc_Metabox', 'location_side_metabox' ),
self::screens(), // post types
'side',
'default'
'default',
array(
'__block_editor_compatible_meta_box' => true,
'__back_compat_meta_box' => false,
)
);
add_meta_box(
'locationsidebox',
Expand Down
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ As it stores the GeoData in a WordPress standard format, Geodata can also be add
Automatically saves location data from image metadata when uploaded as well.

Offers the opportunity to change the displayed timezone on a per-post basis for those posts from far off locations and set this based on the coordinates of the location.
Clicking the clock icon next to the timezone will set to the browser timezone.
While Gutenberg compatible, this is not built for Gutenberg.

* If your site is set to a Manual UTC Offset as opposed to a named timezone, the timezone override feature will not work at this time

Expand Down Expand Up @@ -151,6 +151,7 @@ will now be required to show maps for services that require API keys.
* Removal of hidden underused feature that set timezone based on browser settings
* Fix of map endpoint and add map url to the reverse geocode endpoint as it is merely a URL
* Map now displayed when location is looked up.
* Plugin will now work with Gutenberg, though not strictly built for it.

### 3.4.1 ( 2018-11-02 ) ###
* Fix for displaying map when altitude but no location is set
Expand Down
3 changes: 2 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ As it stores the GeoData in a WordPress standard format, Geodata can also be add
Automatically saves location data from image metadata when uploaded as well.

Offers the opportunity to change the displayed timezone on a per-post basis for those posts from far off locations and set this based on the coordinates of the location.
Clicking the clock icon next to the timezone will set to the browser timezone.
While Gutenberg compatible, this is not built for Gutenberg.

* If your site is set to a Manual UTC Offset as opposed to a named timezone, the timezone override feature will not work at this time

Expand Down Expand Up @@ -151,6 +151,7 @@ will now be required to show maps for services that require API keys.
* Removal of hidden underused feature that set timezone based on browser settings
* Fix of map endpoint and add map url to the reverse geocode endpoint as it is merely a URL
* Map now displayed when location is looked up.
* Plugin will now work with Gutenberg, though not strictly built for it.

= 3.4.1 ( 2018-11-02 ) =
* Fix for displaying map when altitude but no location is set
Expand Down

0 comments on commit 0f7b1ec

Please sign in to comment.