Version Description
/ 02.03.2021 = * Revert changes to table-layout fixed.
Download this release
Release Info
Developer | supsystic.com |
Plugin | Data Tables Generator by Supsystic |
Version | 1.10.4 |
Comparing to | |
See all releases |
Code changes from version 1.10.3 to 1.10.4
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.10.
|
22 |
|
23 |
/* Configure */
|
24 |
$environment->configure(
|
18 |
|
19 |
$menuSlug = 'supsystic-tables';
|
20 |
$pluginPath = dirname(dirname(__FILE__));
|
21 |
+
$environment = new Rsc_Environment('st', '1.10.4', $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.10.
|
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.10.4
|
8 |
* Author: supsystic.com
|
9 |
* Author URI: http://supsystic.com
|
10 |
* Text Domain: supsystic_tables
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
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.6
|
5 |
-
Stable tag: 1.10.
|
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,12 +214,15 @@ 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.10.3 / 01.03.2021 =
|
218 |
* Add fix for dataTables
|
219 |
* Update kses
|
220 |
* Fix for columnWidth feature
|
221 |
* Add fix for notice
|
222 |
-
|
223 |
= 1.10.2 / 15.02.2021 =
|
224 |
* Change <> in formula to @less@ @more@ for wp_kses only for JS now
|
225 |
* Add fix for export @more@@less@
|
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.6
|
5 |
+
Stable tag: 1.10.4
|
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.10.4 / 02.03.2021 =
|
218 |
+
* Revert changes to table-layout fixed.
|
219 |
+
|
220 |
= 1.10.3 / 01.03.2021 =
|
221 |
* Add fix for dataTables
|
222 |
* Update kses
|
223 |
* Fix for columnWidth feature
|
224 |
* Add fix for notice
|
225 |
+
|
226 |
= 1.10.2 / 15.02.2021 =
|
227 |
* Change <> in formula to @less@ @more@ for wp_kses only for JS now
|
228 |
* Add fix for export @more@@less@
|
src/SupsysticTables/Tables/assets/css/tables.shortcode.css
CHANGED
@@ -99,7 +99,7 @@ table.supsystic-table .ww-h {
|
|
99 |
}
|
100 |
|
101 |
table.supsystic-table {
|
102 |
-
table-layout:
|
103 |
max-width: none;
|
104 |
}
|
105 |
|
99 |
}
|
100 |
|
101 |
table.supsystic-table {
|
102 |
+
table-layout: auto!important;
|
103 |
max-width: none;
|
104 |
}
|
105 |
|
src/SupsysticTables/Tables/views/shortcode.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
global $cols, $compact;
|
4 |
$compact = isset($table->settings['styling']['compact']);
|
5 |
$cols = range('A', 'Z');
|
6 |
-
array_walk($table->settings['styling'], create_function('&$item, $key', '$item .= " $key";'));
|
7 |
if (!function_exists('json_encode_escape')) {
|
8 |
function json_encode_escape($array) {
|
9 |
return htmlspecialchars(json_encode($array), ENT_QUOTES, 'UTF-8');
|
3 |
global $cols, $compact;
|
4 |
$compact = isset($table->settings['styling']['compact']);
|
5 |
$cols = range('A', 'Z');
|
6 |
+
//array_walk($table->settings['styling'], create_function('&$item, $key', '$item .= " $key";'));
|
7 |
if (!function_exists('json_encode_escape')) {
|
8 |
function json_encode_escape($array) {
|
9 |
return htmlspecialchars(json_encode($array), ENT_QUOTES, 'UTF-8');
|