wpDataTables Lite - Version 2.0.18

Version Description

  • Added option for title on Print button
  • Bug fix: Issue for enabling Apply button on input/paste URL input
  • Bug fixes and stability improvements.
Download this release

Release Info

Developer wpDataTables
Plugin Icon 128x128 wpDataTables Lite
Version 2.0.18
Comparing to
See all releases

Code changes from version 2.0.17 to 2.0.18

assets/js/wpdatatables/admin/plugin-settings/main.js CHANGED
@@ -10,7 +10,6 @@
10
  (function($) {
11
  $(function(){
12
 
13
-
14
 
15
  /**
16
  * Change language on select change - "Interface language"
@@ -249,8 +248,6 @@
249
  $('input#wdt-font-size').val('');
250
  });
251
 
252
-
253
-
254
  /**
255
  * Save settings on Apply button
256
  */
@@ -258,12 +255,9 @@
258
 
259
  $('.wdt-preload-layer').animateFadeIn();
260
 
261
-
262
-
263
  savePluginSettings();
264
  });
265
 
266
-
267
 
268
  function savePluginSettings() {
269
  $.ajax({
10
  (function($) {
11
  $(function(){
12
 
 
13
 
14
  /**
15
  * Change language on select change - "Interface language"
248
  $('input#wdt-font-size').val('');
249
  });
250
 
 
 
251
  /**
252
  * Save settings on Apply button
253
  */
255
 
256
  $('.wdt-preload-layer').animateFadeIn();
257
 
 
 
258
  savePluginSettings();
259
  });
260
 
 
261
 
262
  function savePluginSettings() {
263
  $.ajax({
assets/js/wpdatatables/admin/table-settings/main.js CHANGED
@@ -41,7 +41,7 @@
41
  /**
42
  * Change URL
43
  */
44
- $('#wdt-input-url').change(function(e){
45
  wpdatatable_config.setContent( $(this).val() );
46
  });
47
 
41
  /**
42
  * Change URL
43
  */
44
+ $('#wdt-input-url').bind('input change',function(e){
45
  wpdatatable_config.setContent( $(this).val() );
46
  });
47
 
config/config.inc.php CHANGED
@@ -9,7 +9,7 @@ defined('ABSPATH') or die("Cannot access pages directly.");
9
 
10
  // Current version
11
 
12
- define('WDT_CURRENT_VERSION', '2.0.17');
13
 
14
  /**
15
  * Regular Expressions
9
 
10
  // Current version
11
 
12
+ define('WDT_CURRENT_VERSION', '2.0.18');
13
 
14
  /**
15
  * Regular Expressions
readme.txt CHANGED
@@ -2,11 +2,11 @@
2
  Contributors: wpDataTables, WebFactory
3
  Author URI: https://tms-outsource.com
4
  Plugin URI: https://wpdatatables.com/
5
- Tags: data tables, table, charts, tables from csv, tables from excel, datatables, responsive tables, charting, mysql tables, table plugin, wp table, WordPress table Plugin, Google Charts, Excel, JSON, XML, PHP array
6
  Requires at least: 4.0
7
  Tested up to: 5.3.2
8
  Requires PHP: 5.4
9
- Stable tag: 2.0.17
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -167,11 +167,15 @@ This can be changed from the “Number format” drop-down menu in the wpDataTab
167
 
168
  == Changelog ==
169
 
 
 
 
 
 
170
  = 2.0.17 =
171
  * Updated Russian translation
172
  * Bug fixes and stability improvements.
173
 
174
-
175
  = 2.0.16 =
176
  * A minor update with a couple of small bugfixes:
177
  * Bugfix: Fixed conflict with WooCommerce product page and Gutenberg
2
  Contributors: wpDataTables, WebFactory
3
  Author URI: https://tms-outsource.com
4
  Plugin URI: https://wpdatatables.com/
5
+ Tags: data tables, table, charts, tables from csv, tables from excel, datatables, responsive tables, charting, pie charts, mysql tables, table plugin, wp table, WordPress table Plugin, Google Charts, Excel, JSON, XML, PHP array
6
  Requires at least: 4.0
7
  Tested up to: 5.3.2
8
  Requires PHP: 5.4
9
+ Stable tag: 2.0.18
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
167
 
168
  == Changelog ==
169
 
170
+ = 2.0.18 =
171
+ * Added option for title on Print button
172
+ * Bug fix: Issue for enabling Apply button on input/paste URL input
173
+ * Bug fixes and stability improvements.
174
+
175
  = 2.0.17 =
176
  * Updated Russian translation
177
  * Bug fixes and stability improvements.
178
 
 
179
  = 2.0.16 =
180
  * A minor update with a couple of small bugfixes:
181
  * Bugfix: Fixed conflict with WooCommerce product page and Gutenberg
source/class.wpdatatable.php CHANGED
@@ -2007,7 +2007,8 @@ class WPDataTable
2007
  'extend' => 'print',
2008
  'exportOptions' => array('columns' => ':visible'),
2009
  'className' => 'DTTT_button DTTT_button_print',
2010
- 'text' => __('Print', 'wpdatatables')
 
2011
  );
2012
  }
2013
 
@@ -2075,7 +2076,8 @@ class WPDataTable
2075
  'extend' => 'print',
2076
  'exportOptions' => array('columns' => ':visible'),
2077
  'className' => 'DTTT_button DTTT_button_print',
2078
- 'text' => __('Print', 'wpdatatables')
 
2079
  );
2080
  }
2081
 
2007
  'extend' => 'print',
2008
  'exportOptions' => array('columns' => ':visible'),
2009
  'className' => 'DTTT_button DTTT_button_print',
2010
+ 'text' => __('Print', 'wpdatatables'),
2011
+ 'title' => $wdtExportFileName
2012
  );
2013
  }
2014
 
2076
  'extend' => 'print',
2077
  'exportOptions' => array('columns' => ':visible'),
2078
  'className' => 'DTTT_button DTTT_button_print',
2079
+ 'text' => __('Print', 'wpdatatables'),
2080
+ 'title' => $wdtExportFileName
2081
  );
2082
  }
2083
 
wpdatatables.php CHANGED
@@ -5,7 +5,7 @@
5
  Plugin Name: wpDataTables - Tables & Table Charts
6
  Plugin URI: https://tms-outsource.com
7
  Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
8
- Version: 2.0.17
9
  Author: TMS-Plugins
10
  Author URI: https://tms-outsource.com
11
  Text Domain: wpdatatables
5
  Plugin Name: wpDataTables - Tables & Table Charts
6
  Plugin URI: https://tms-outsource.com
7
  Description: Create responsive, sortable tables & charts from Excel, CSV or PHP. Add tables & charts to any post in minutes with DataTables.
8
+ Version: 2.0.18
9
  Author: TMS-Plugins
10
  Author URI: https://tms-outsource.com
11
  Text Domain: wpdatatables