Data Tables Generator by Supsystic - Version 1.9.96

Version Description

/ 15.09.2020

Download this release

Release Info

Developer supsystic.com
Plugin Icon 128x128 Data Tables Generator by Supsystic
Version 1.9.96
Comparing to
See all releases

Code changes from version 1.9.95 to 1.9.96

app/SupsysticTables.php CHANGED
@@ -18,7 +18,7 @@ class SupsysticTables
18
 
19
  $menuSlug = 'supsystic-tables';
20
  $pluginPath = dirname(dirname(__FILE__));
21
- $environment = new Rsc_Environment('st', '1.9.95', $pluginPath);
22
 
23
  /* Configure */
24
  $environment->configure(
18
 
19
  $menuSlug = 'supsystic-tables';
20
  $pluginPath = dirname(dirname(__FILE__));
21
+ $environment = new Rsc_Environment('st', '1.9.96', $pluginPath);
22
 
23
  /* Configure */
24
  $environment->configure(
index.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Data Tables Generator by Supsystic
5
  * Plugin URI: http://supsystic.com
6
  * Description: Create and manage beautiful data tables with custom design. No HTML knowledge is required
7
- * Version: 1.9.95
8
  * Author: supsystic.com
9
  * Author URI: http://supsystic.com
10
  * Text Domain: supsystic_tables
4
  * Plugin Name: Data Tables Generator by Supsystic
5
  * Plugin URI: http://supsystic.com
6
  * Description: Create and manage beautiful data tables with custom design. No HTML knowledge is required
7
+ * Version: 1.9.96
8
  * Author: supsystic.com
9
  * Author URI: http://supsystic.com
10
  * Text Domain: supsystic_tables
readme.txt CHANGED
@@ -1,8 +1,8 @@
1
  === Data Tables Generator by Supsystic ===
2
  Contributors: supsystic.com
3
  Tags: data table, spreadsheet, table builder, charts, graphs, wordpress table plugin, excel, line chart, pie chart, visualise data
4
- Tested up to: 5.4
5
- Stable tag: 1.9.95
6
 
7
  Create data tables with charts and graphs. Custom design, navigation, searching and ordering functions. Export to PDF, CSV, Print. Excel spreadsheet. WooCommerce Integration.
8
 
@@ -214,6 +214,11 @@ It's perfect for product [Price List](http://woo.supsystic.com/price-list "Price
214
  Create custom order forms which increase your conversion rate!
215
 
216
  == Changelog ==
 
 
 
 
 
217
  = 1.9.95 / 29.06.2020 =
218
  * Fix For TWIG
219
 
1
  === Data Tables Generator by Supsystic ===
2
  Contributors: supsystic.com
3
  Tags: data table, spreadsheet, table builder, charts, graphs, wordpress table plugin, excel, line chart, pie chart, visualise data
4
+ Tested up to: 5.5
5
+ Stable tag: 1.9.96
6
 
7
  Create data tables with charts and graphs. Custom design, navigation, searching and ordering functions. Export to PDF, CSV, Print. Excel spreadsheet. WooCommerce Integration.
8
 
214
  Create custom order forms which increase your conversion rate!
215
 
216
  == Changelog ==
217
+ = 1.9.96 / 15.09.2020 =
218
+ * Add fix for sprintf
219
+ * Add fix for WP 5.5
220
+
221
+
222
  = 1.9.95 / 29.06.2020 =
223
  * Fix For TWIG
224
 
src/SupsysticTables/Tables/Module.php CHANGED
@@ -310,7 +310,7 @@ class SupsysticTables_Tables_Module extends SupsysticTables_Core_BaseModule
310
  return file_get_contents($cachePath);
311
  }
312
  if ($this->checkSpreadsheet) {
313
- try {
314
  $this->getEnvironment()->getModule('importer')->autoUpdateTableFromGoogle($id, $table);
315
  } catch(Exception $e) {
316
  return $e->getMessage();
@@ -532,7 +532,7 @@ class SupsysticTables_Tables_Module extends SupsysticTables_Core_BaseModule
532
  )
533
  );
534
 
535
- if ($table->settings['useNumberFormat']) {
536
  $numberFormat = $table->settings['numberFormat'];
537
  $percentFormat = $table->settings['percentFormat'];
538
  $currencyFormat = $table->settings['currencyFormat'];
310
  return file_get_contents($cachePath);
311
  }
312
  if ($this->checkSpreadsheet) {
313
+ try {
314
  $this->getEnvironment()->getModule('importer')->autoUpdateTableFromGoogle($id, $table);
315
  } catch(Exception $e) {
316
  return $e->getMessage();
532
  )
533
  );
534
 
535
+ if (!empty($table->settings['useNumberFormat']) && $table->settings['useNumberFormat']) {
536
  $numberFormat = $table->settings['numberFormat'];
537
  $percentFormat = $table->settings['percentFormat'];
538
  $currencyFormat = $table->settings['currencyFormat'];