Version Description
- 2019-09-12 =
- Fixed : WP less than 5.0 error
- Added : Construction templates
- Added : GIFs assets
Download this release
Release Info
Developer | gutentor |
Plugin | Gutentor – Gutenberg Blocks – Page Builder for Gutenberg Editor |
Version | 1.0.7 |
Comparing to | |
See all releases |
Code changes from version 1.0.6 to 1.0.7
- gutentor.php +2 -2
- includes/init.php +4 -2
- includes/tools/class-advanced-import.php +10 -0
- readme.txt +15 -9
gutentor.php
CHANGED
@@ -14,7 +14,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
14 |
* @wordpress-plugin
|
15 |
* Plugin Name: Gutentor : WordPress Page Building Blocks with Unlimited Possibilities to Design
|
16 |
* Description: The most advanced yet easy drag & drop block page builder. Create masterpiece, pixel perfect websites using modern WordPress way. Work with any theme, create any design.
|
17 |
-
* Version: 1.0.
|
18 |
* Author: Gutentor
|
19 |
* Author URI: https://www.gutentor.com/
|
20 |
* License: GPL-2.0+
|
@@ -24,7 +24,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|
24 |
*/
|
25 |
|
26 |
/*Define Constants for this plugin*/
|
27 |
-
define( 'GUTENTOR_VERSION', '1.0.
|
28 |
define( 'GUTENTOR_PATH', plugin_dir_path( __FILE__ ) );
|
29 |
define( 'GUTENTOR_URL', plugin_dir_url( __FILE__ ) );
|
30 |
define( 'GUTENTOR_SCRIPT_PREFIX', ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min' );
|
14 |
* @wordpress-plugin
|
15 |
* Plugin Name: Gutentor : WordPress Page Building Blocks with Unlimited Possibilities to Design
|
16 |
* Description: The most advanced yet easy drag & drop block page builder. Create masterpiece, pixel perfect websites using modern WordPress way. Work with any theme, create any design.
|
17 |
+
* Version: 1.0.7
|
18 |
* Author: Gutentor
|
19 |
* Author URI: https://www.gutentor.com/
|
20 |
* License: GPL-2.0+
|
24 |
*/
|
25 |
|
26 |
/*Define Constants for this plugin*/
|
27 |
+
define( 'GUTENTOR_VERSION', '1.0.7' );
|
28 |
define( 'GUTENTOR_PATH', plugin_dir_path( __FILE__ ) );
|
29 |
define( 'GUTENTOR_URL', plugin_dir_url( __FILE__ ) );
|
30 |
define( 'GUTENTOR_SCRIPT_PREFIX', ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min' );
|
includes/init.php
CHANGED
@@ -107,10 +107,12 @@ class Gutentor {
|
|
107 |
$this->plugin_name = 'gutentor';
|
108 |
$this->plugin_full_name = esc_html__('Gutentor','gutentor');
|
109 |
|
110 |
-
|
111 |
-
$this->set_locale();
|
112 |
|
113 |
if(function_exists('register_block_type')){
|
|
|
|
|
|
|
114 |
$this->define_hooks();
|
115 |
$this->load_hooks();
|
116 |
}
|
107 |
$this->plugin_name = 'gutentor';
|
108 |
$this->plugin_full_name = esc_html__('Gutentor','gutentor');
|
109 |
|
110 |
+
|
|
|
111 |
|
112 |
if(function_exists('register_block_type')){
|
113 |
+
$this->load_dependencies();
|
114 |
+
$this->set_locale();
|
115 |
+
|
116 |
$this->define_hooks();
|
117 |
$this->load_hooks();
|
118 |
}
|
includes/tools/class-advanced-import.php
CHANGED
@@ -601,6 +601,16 @@ if ( ! class_exists( 'Gutentor_Advanced_Import_Server' ) ) {
|
|
601 |
'screenshot_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/fitness/fitness-1/fitness-template.jpg',
|
602 |
'demo_url' => 'https://www.demo.gutentor.com/templates/fitness-1/',
|
603 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
604 |
);
|
605 |
|
606 |
$templates = apply_filters( 'gutentor_advanced_import_templates', $templates_list );
|
601 |
'screenshot_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/fitness/fitness-1/fitness-template.jpg',
|
602 |
'demo_url' => 'https://www.demo.gutentor.com/templates/fitness-1/',
|
603 |
),
|
604 |
+
array(
|
605 |
+
'title' => __( 'Construction', 'gutentor' ),
|
606 |
+
'type' => 'template',
|
607 |
+
'author' => __( 'Gutentor', 'gutentor' ),
|
608 |
+
'keywords' => array( 'construction', 'construction 1' ),
|
609 |
+
'categories' => array( 'construction' ),
|
610 |
+
'template_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/construction/construction-1/template.json',
|
611 |
+
'screenshot_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/construction/construction-1/construction-template.jpg',
|
612 |
+
'demo_url' => 'https://www.demo.gutentor.com/templates/construction-1/',
|
613 |
+
),
|
614 |
);
|
615 |
|
616 |
$templates = apply_filters( 'gutentor_advanced_import_templates', $templates_list );
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: blocks, block, block editor, drag-and-drop, landing page, website builder,
|
|
6 |
Requires at least: 5.0
|
7 |
Tested up to: 5.2.3
|
8 |
Requires PHP: 5.6.20
|
9 |
-
Stable tag: 1.0.
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
@@ -146,18 +146,24 @@ Yes We provide Free Support via WordPress Support Forum https://wordpress.org/su
|
|
146 |
|
147 |
== Screenshots ==
|
148 |
|
149 |
-
1. Gutentor
|
150 |
-
2. Gutentor Template
|
151 |
-
3. Gutentor
|
152 |
-
4. Gutentor
|
153 |
-
5. Gutentor
|
154 |
-
6. Gutentor
|
155 |
-
7.
|
156 |
-
8. Gutentor
|
|
|
157 |
|
158 |
|
159 |
== Changelog ==
|
160 |
|
|
|
|
|
|
|
|
|
|
|
161 |
= 1.0.6 - 2019-09-11 =
|
162 |
* Fixed : Blog post category setAttributes
|
163 |
* Fixed : Advanced Columns
|
6 |
Requires at least: 5.0
|
7 |
Tested up to: 5.2.3
|
8 |
Requires PHP: 5.6.20
|
9 |
+
Stable tag: 1.0.7
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
146 |
|
147 |
== Screenshots ==
|
148 |
|
149 |
+
1. Gutentor : Adding a new block
|
150 |
+
2. Gutentor Template Module : Multiple template modules for each block, select best match block template for your design
|
151 |
+
3. Gutentor Blocks : Showcase of our beautiful ready made blocks to import
|
152 |
+
4. Gutentor Blocks Library : Choose one of our beautiful pre design block and customize it according to your requirements
|
153 |
+
5. Gutentor Template Library : Showcase of our beautiful ready made templates, ready to import
|
154 |
+
6. Gutentor Template Import : Import pre design beautiful ready made templates and customize It.
|
155 |
+
7. Visual Editor Experience : No need to view from front end to view how your block looks, change in realtime
|
156 |
+
8. Gutentor Export Import : Export your blocks or templates in JSON files and import using inbuild file import
|
157 |
+
9. Gutentor Blocks : Gutentor provide complete site building blocks and elements
|
158 |
|
159 |
|
160 |
== Changelog ==
|
161 |
|
162 |
+
= 1.0.7 - 2019-09-12 =
|
163 |
+
* Fixed : WP less than 5.0 error
|
164 |
+
* Added : Construction templates
|
165 |
+
* Added : GIFs assets
|
166 |
+
|
167 |
= 1.0.6 - 2019-09-11 =
|
168 |
* Fixed : Blog post category setAttributes
|
169 |
* Fixed : Advanced Columns
|