Version Description
- 2019-09-10 =
- Fixed : Video block
- Added : Shape Divider on advanced column bottom
- Added : Travel templates
- Update : Minor change and fixes
Download this release
Release Info
Developer | gutentor |
Plugin | Gutentor – Gutenberg Blocks – Page Builder for Gutenberg Editor |
Version | 1.0.5 |
Comparing to | |
See all releases |
Code changes from version 1.0.4 to 1.0.5
- gutentor.php +2 -2
- includes/tools/class-advanced-import.php +10 -0
- readme.txt +7 -1
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.5
|
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.5' );
|
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/tools/class-advanced-import.php
CHANGED
@@ -581,6 +581,16 @@ if ( ! class_exists( 'Gutentor_Advanced_Import_Server' ) ) {
|
|
581 |
'screenshot_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/agency/agency-1/agency-template.jpg',
|
582 |
'demo_url' => 'https://www.demo.gutentor.com/templates/agency-1/',
|
583 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
584 |
);
|
585 |
|
586 |
$templates = apply_filters( 'gutentor_advanced_import_templates', $templates_list );
|
581 |
'screenshot_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/agency/agency-1/agency-template.jpg',
|
582 |
'demo_url' => 'https://www.demo.gutentor.com/templates/agency-1/',
|
583 |
),
|
584 |
+
array(
|
585 |
+
'title' => __( 'Travel', 'gutentor' ),
|
586 |
+
'type' => 'template',
|
587 |
+
'author' => __( 'Gutentor', 'gutentor' ),
|
588 |
+
'keywords' => array( 'travel', 'travel 1' ),
|
589 |
+
'categories' => array( 'travel' ),
|
590 |
+
'template_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/travel/travel-1/template.json',
|
591 |
+
'screenshot_url' => 'https://raw.githubusercontent.com/gutentor/template-library/master/templates/travel/travel-1/travel-template.jpg',
|
592 |
+
'demo_url' => 'https://www.demo.gutentor.com/templates/travel-1/',
|
593 |
+
),
|
594 |
);
|
595 |
|
596 |
$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 |
|
@@ -158,6 +158,12 @@ Yes We provide Free Support via WordPress Support Forum https://wordpress.org/su
|
|
158 |
|
159 |
== Changelog ==
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
= 1.0.4 - 2019-09-09 =
|
162 |
* Fixed : Countup JS
|
163 |
* Fixed : Blog Mobile Issue
|
6 |
Requires at least: 5.0
|
7 |
Tested up to: 5.2.3
|
8 |
Requires PHP: 5.6.20
|
9 |
+
Stable tag: 1.0.5
|
10 |
License: GPLv2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
|
158 |
|
159 |
== Changelog ==
|
160 |
|
161 |
+
= 1.0.5 - 2019-09-10 =
|
162 |
+
* Fixed : Video block
|
163 |
+
* Added : Shape Divider on advanced column bottom
|
164 |
+
* Added : Travel templates
|
165 |
+
* Update : Minor change and fixes
|
166 |
+
|
167 |
= 1.0.4 - 2019-09-09 =
|
168 |
* Fixed : Countup JS
|
169 |
* Fixed : Blog Mobile Issue
|