Data Tables Generator by Supsystic - Version 1.10.14

Version Description

Download this release

Release Info

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

Code changes from version 1.10.13 to 1.10.14

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.13', $pluginPath);
22
 
23
  /* Configure */
24
  $environment->configure(
18
 
19
  $menuSlug = 'supsystic-tables';
20
  $pluginPath = dirname(dirname(__FILE__));
21
+ $environment = new Rsc_Environment('st', '1.10.14', $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.13
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.14
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.8
5
- Stable tag: 1.10.13
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.10.13 / 06.12.2021 =
218
  * Fix for RuleJS
219
  * Fix in license.mod
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.9
5
+ Stable tag: 1.10.14
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.14 / 02.12.2022 =
218
+ * Migrating to mPDF from dompdf, for export PDF feature.
219
+ * Remove temp fonts from mpdf
220
+ * Set mPDF to download PDF file instead of opening in a window.
221
+
222
  1.10.13 / 06.12.2021 =
223
  * Fix for RuleJS
224
  * Fix in license.mod
src/SupsysticTables/Tables/views/shortcode.twig CHANGED
@@ -32,6 +32,10 @@
32
  data-cell-type="{{ cell.type }}"
33
  {% endif %}
34
 
 
 
 
 
35
  {% if cell.formatType is not empty %}
36
  data-cell-format-type="{{ cell.formatType }}"
37
  {% endif %}
32
  data-cell-type="{{ cell.type }}"
33
  {% endif %}
34
 
35
+ {% if 'invisibleCell' in cell.meta %}
36
+ style="display:none; visibility:hidden; font-size:0px; color:transparent; text-indent: -99999999px;"
37
+ {% endif %}
38
+
39
  {% if cell.formatType is not empty %}
40
  data-cell-format-type="{{ cell.formatType }}"
41
  {% endif %}
src/SupsysticTables/Tables/views/view.twig CHANGED
@@ -1026,14 +1026,14 @@
1026
  </div>
1027
  <div class="setting-wrapper">
1028
  <div class="setting-label">
1029
- <label for="features-export-pdf-export-fonts-unavailable">
1030
- {{ environment.translate('Export Fonts to PDF') }}
1031
- {{ tooltip.icon(environment.translate('Allows export to PDF file the fonts, which were set for table content via editor toolbar. Important! Custom fonts might not contain some specific characters (greek, cyrillic etc.), so after importing of fonts your PDF file might lost part of content.')) }}
1032
  </label>
1033
- <a target="_blank" class="supsystic-pro-feature" href="{{ build_pro_url({ 'utm_medium': 'export_feature_pdf_export_fonts' }) }}">{{ environment.translate('PRO option') }}</a>
1034
  </div>
1035
  <div class="setting-check">
1036
- <input type="checkbox" name="pdfExportFonts" disabled="disabled" id="features-export-pdf-export-fonts-unavailable" />
1037
  </div>
1038
  </div>
1039
  <div class="setting-wrapper">
1026
  </div>
1027
  <div class="setting-wrapper">
1028
  <div class="setting-label">
1029
+ <label for="features-export-pdf-full-width">
1030
+ {{ environment.translate('PDF Table Full Width') }}
1031
+ {{ tooltip.icon(environment.translate('Stretch the table to the entire PDF page, while maintaining the proportion of the height and width of the columns.')) }}
1032
  </label>
1033
+ <a target="_blank" class="supsystic-pro-feature" href="{{ build_pro_url({ 'utm_medium': 'export_feature_pdf_full_width' }) }}">{{ environment.translate('PRO option') }}</a>
1034
  </div>
1035
  <div class="setting-check">
1036
+ <input type="checkbox" name="pdfFullWidth" disabled="disabled" id="features-export-pdf-full-width-unavailable" />
1037
  </div>
1038
  </div>
1039
  <div class="setting-wrapper">