From d0cf53bc60ba5ad1c0a0f2d796455a951a76526b Mon Sep 17 00:00:00 2001 From: pjaudiomv <34245618+pjaudiomv@users.noreply.github.com> Date: Wed, 28 Sep 2022 16:03:48 -0400 Subject: [PATCH] fix for fast table display (#26) --- bmlt-wordpress-satellite-plugin.php | 3 ++- composer.json | 2 +- composer.lock | 14 +++++++------- readme.txt | 5 ++++- 4 files changed, 14 insertions(+), 10 deletions(-) diff --git a/bmlt-wordpress-satellite-plugin.php b/bmlt-wordpress-satellite-plugin.php index 58da57c..05f66b8 100644 --- a/bmlt-wordpress-satellite-plugin.php +++ b/bmlt-wordpress-satellite-plugin.php @@ -9,7 +9,7 @@ Plugin URI: https://bmlt.app Author: MAGSHARE Description: This is a WordPress plugin satellite of the Basic Meeting List Toolbox. -Version: 3.11.1 +Version: 3.11.2 Install: Drop this directory into the "wp-content/plugins/" directory and activate it. ********************************************************************************************/ @@ -578,6 +578,7 @@ protected function set_callbacks() add_action('admin_init', array ( self::get_plugin_object(), 'admin_ajax_handler' )); add_action('admin_menu', array ( self::get_plugin_object(), 'option_menu' )); add_action('init', array ( self::get_plugin_object(), 'filter_init' )); + wp_enqueue_script("leaflet", $this->get_plugin_path() . "table_display.js", false, filemtime($this->get_plugin_path() . "table_display.js"), false); } else { echo ""; } diff --git a/composer.json b/composer.json index 5ba1059..be8692d 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "squizlabs/php_codesniffer": "3.*" }, "require": { - "bmlt/bmlt-satellite-base-class": "^3.11.2", + "bmlt/bmlt-satellite-base-class": "^3.11.3", "bmlt/bmlt-satellite-driver": "1.1" } } diff --git a/composer.lock b/composer.lock index 00a6656..c49af2a 100644 --- a/composer.lock +++ b/composer.lock @@ -4,20 +4,20 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "555c62f479c6f29c4e4b9a205263c39e", + "content-hash": "1622b5276658f9fe2e123a6054ab8053", "packages": [ { "name": "bmlt/bmlt-satellite-base-class", - "version": "3.11.2", + "version": "3.11.3", "source": { "type": "git", "url": "https://github.com/bmlt-enabled/bmlt-satellite-base-class.git", - "reference": "a8116dee50cc6469c448aef70a08d028a984da66" + "reference": "62b35df9ef9763a6b82d27dde63f222c01bc5a5f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bmlt-enabled/bmlt-satellite-base-class/zipball/a8116dee50cc6469c448aef70a08d028a984da66", - "reference": "a8116dee50cc6469c448aef70a08d028a984da66", + "url": "https://api.github.com/repos/bmlt-enabled/bmlt-satellite-base-class/zipball/62b35df9ef9763a6b82d27dde63f222c01bc5a5f", + "reference": "62b35df9ef9763a6b82d27dde63f222c01bc5a5f", "shasum": "" }, "require": { @@ -45,9 +45,9 @@ "description": "This is a generic CMS plugin class for a BMLT satellite client.", "support": { "issues": "https://github.com/bmlt-enabled/bmlt-satellite-base-class/issues", - "source": "https://github.com/bmlt-enabled/bmlt-satellite-base-class/tree/3.11.2" + "source": "https://github.com/bmlt-enabled/bmlt-satellite-base-class/tree/3.11.3" }, - "time": "2022-09-28T14:50:14+00:00" + "time": "2022-09-28T19:47:46+00:00" }, { "name": "bmlt/bmlt-satellite-driver", diff --git a/readme.txt b/readme.txt index 716a80b..2c4cea3 100644 --- a/readme.txt +++ b/readme.txt @@ -6,7 +6,7 @@ Tags: na, meeting list, meeting finder, maps, recovery, addiction, webservant Author: bmlt-enabled Requires at least: 4.0 Tested up to: 6.0.2 -Stable tag: 3.11.1 +Stable tag: 3.11.2 This is a "satellite" plugin for the Basic Meeting List Toolbox (BMLT). @@ -28,6 +28,9 @@ This is a standard WordPress plugin. Either use the in-dashboard installer, or m = Changelog = += 3.11.2 = +* Fix for fast table display not displaying properly. + = 3.11.1 = * Fixed PHP8 fatal error that could occur with port detection.