Plugin Directory

Changeset 1976437


Ignore:
Timestamp:
11/18/2018 09:52:42 PM (7 years ago)
Author:
themeblvd
Message:

2.3.0

Location:
theme-blvd-layout-builder/trunk
Files:
225 added
2 edited

Legend:

Unmodified
Added
Removed
  • theme-blvd-layout-builder/trunk/readme.txt

    r1825503 r1976437  
    33Contributors: themeblvd
    44Tags: layouts, custom, homepage, builder, Theme Blvd, themeblvd, Jason Bobich
    5 Stable Tag: 2.2.7
    6 Tested up to: 4.9
     5Stable Tag: 2.3.0
     6Tested up to: 5.0
    77
    88When using a Theme Blvd theme, this plugin gives you slick interface to build custom layouts.
     
    5858
    5959== Changelog ==
     60
     61= 2.3.0 - 11/18/2018 =
     62* New: Added compatibility for WordPress 5's new block editor ([see article](https://docs.themeblvd.com/article/74-layout-builder-with-gutenberg)).
     63* Fixed: When saving a custom layout as a template, the "Custom CSS" option was not getting saved with the new template.
    6064
    6165= 2.2.7 - 02/08/2018 =
     
    286290== Upgrade Notice ==
    287291
    288 = 2.2.7 =
     292= 2.3.0 =
    289293Compatible Themes: Jump Start 2.0+, Denali 1.0+, Gnar 1.0+, Akita 2.1.17+, Alyeska 3.1.17+, Arcadian 2.1.8+, Barely Corporate 4.1.17+, Commodore 3.0.14+, Swagger 2.1.17+
  • theme-blvd-layout-builder/trunk/tb-builder.php

    r1818530 r1976437  
    33Plugin Name: Theme Blvd Layout Builder
    44Description: When using a Theme Blvd theme, this plugin gives you slick interface to build custom layouts.
    5 Version: 2.2.7
     5Version: 2.3.0
    66Author: Theme Blvd
    77Author URI: http://themeblvd.com
    8 License: GPL2
    9 
    10     Copyright 2015  Theme Blvd
    11 
    12     This program is free software; you can redistribute it and/or modify
    13     it under the terms of the GNU General Public License version 2,
    14     as published by the Free Software Foundation.
    15 
    16     You may NOT assume that you can use any other version of the GPL.
    17 
    18     This program is distributed in the hope that it will be useful,
    19     but WITHOUT ANY WARRANTY; without even the implied warranty of
    20     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    21     GNU General Public License for more details.
    22 
    23     The license for this software can likely be found here:
    24     http://www.gnu.org/licenses/gpl-2.0.html
    25 
     8License: MIT
    269*/
    2710
    28 define( 'TB_BUILDER_PLUGIN_VERSION', '2.2.7' );
     11define( 'TB_BUILDER_PLUGIN_VERSION', '2.3.0' );
    2912define( 'TB_BUILDER_PLUGIN_DIR', dirname( __FILE__ ) );
    3013define( 'TB_BUILDER_PLUGIN_URI', plugins_url( '' , __FILE__ ) );
     
    3922    global $_themeblvd_export_layouts;
    4023    global $_themeblvd_layout_builder;
     24    global $_themeblvd_layout_builder_editor;
    4125
    4226    // Include general items
     
    165149            include_once( TB_BUILDER_PLUGIN_DIR . '/inc/admin/builder-samples.php' );
    166150            include_once( TB_BUILDER_PLUGIN_DIR . '/inc/admin/class-tb-layout-builder-ajax.php' );
     151            include_once( TB_BUILDER_PLUGIN_DIR . '/inc/admin/class-tb-layout-builder-editor.php' );
    167152            include_once( TB_BUILDER_PLUGIN_DIR . '/inc/admin/class-tb-layout-builder.php' );
    168153
    169154            // Setup Builder interface
    170155            $_themeblvd_layout_builder = new Theme_Blvd_Layout_Builder();
     156
     157            // WordPress 5+ Editor Integration
     158            $_themeblvd_layout_builder_editor = new Theme_Blvd_Layout_Builder_Editor();
    171159
    172160        }
Note: See TracChangeset for help on using the changeset viewer.