Table Maker - Version 1.2

Version Description

  • some fixes
Download this release

Release Info

Developer wpsoul
Plugin Icon 128x128 Table Maker
Version 1.2
Comparing to
See all releases

Code changes from version 1.1 to 1.2

Files changed (2) hide show
  1. readme.txt +7 -4
  2. table-maker.php +2 -2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: responsive tables, pricing tables, comparison tables, wordpress tables, ta
4
  Donate link: http://wpsoul.com/
5
  Requires at least: 3.0
6
  Tested up to: 4.3.3
7
- Stable tag: 1.0
8
  License: License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -48,8 +48,11 @@ If you like this plugin please give it a good rating.
48
  3. How it looks on mobile
49
 
50
  == Changelog ==
51
- = 1.0 =
52
- * Initial release
53
 
54
  = 1.1 =
55
- * Update readme and some fixes
 
 
 
4
  Donate link: http://wpsoul.com/
5
  Requires at least: 3.0
6
  Tested up to: 4.3.3
7
+ Stable tag: 1.1
8
  License: License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
48
  3. How it looks on mobile
49
 
50
  == Changelog ==
51
+ = 1.2 =
52
+ * some fixes
53
 
54
  = 1.1 =
55
+ * Update readme and some fixes
56
+
57
+ = 1.0 =
58
+ * Initial release
table-maker.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Table Maker
4
  Plugin URI:
5
  Description: Create tables with just a few clicks.
6
- Version: 1.0
7
  Author: Wpsoul
8
  Author URI: https://wpsoul.com
9
  License: GPL2
@@ -18,7 +18,7 @@ if ( ! defined( 'WPINC' ) ) {
18
  require_once plugin_dir_path( __FILE__ ) . 'inc/class-wpsm-table-maker.php';
19
 
20
  function wpsm_run_table_maker() {
21
- $plugin_instance = new WPSM_Table_Maker('1.0');
22
  register_activation_hook( __FILE__, array($plugin_instance, 'initialize') );
23
  register_uninstall_hook( __FILE__, array('WPSM_Table_Maker', 'rollback') );
24
  }
3
  Plugin Name: Table Maker
4
  Plugin URI:
5
  Description: Create tables with just a few clicks.
6
+ Version: 1.2
7
  Author: Wpsoul
8
  Author URI: https://wpsoul.com
9
  License: GPL2
18
  require_once plugin_dir_path( __FILE__ ) . 'inc/class-wpsm-table-maker.php';
19
 
20
  function wpsm_run_table_maker() {
21
+ $plugin_instance = new WPSM_Table_Maker('1.2');
22
  register_activation_hook( __FILE__, array($plugin_instance, 'initialize') );
23
  register_uninstall_hook( __FILE__, array('WPSM_Table_Maker', 'rollback') );
24
  }