From 2fa83e8c10b3046f7bcda99fe49b34d74857f7fd Mon Sep 17 00:00:00 2001 From: Shramee Srivastav Date: Thu, 5 Jan 2017 10:20:57 +0530 Subject: [PATCH] Ready for v1.1.0 --- README.txt | 7 +++++-- ppb-product-builder.php | 11 ++++++----- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/README.txt b/README.txt index c24a66b..76acd01 100644 --- a/README.txt +++ b/README.txt @@ -6,10 +6,9 @@ Plugin URI: http://www.pootlepress.com/woocommerce-builder Tags: product builder, product page builder, product pagebuilder, pootlepress, pootle page builder, pootlepagebuilder, pootle pagebuilder, product layout, product layouts, product layout builder, product layout customizer Author URI: http://www.pootlepress.com Author: PootlePress -Donate link: Requires at least: 4.1.0 Tested up to: 4.7-alpha-38356 -Stable tag: 1.0.0 +Stable tag: 1.1.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -71,6 +70,10 @@ Edit the product, uncheck "Enable Product builder" checkbox above `Update` butto == Upgrade Notice == += 1.1.0 = + * Fix - WooBuilder metabox showing on all post edit screens + * Fix - Disabling WooBuilder shows ppb layout in description instead of long description + = 1.0.0 = * Ready for the world diff --git a/ppb-product-builder.php b/ppb-product-builder.php index 76dbb95..2d7b9aa 100755 --- a/ppb-product-builder.php +++ b/ppb-product-builder.php @@ -2,12 +2,13 @@ /* Plugin Name: WooBuilder Plugin URI: http://pootlepress.com/ -Description: Boilerplate for fast track Pootle Page Builder Addon Development -Author: Shramee -Version: 1.0.0 -Author URI: http://shramee.com/ +Description: WooBuilder let's you take complete control of your product layout, let's you create advanced, professional looking product page layouts. +Author: pootlepress +Version: 1.1.0 +Author URI: http://pootlepress.com/ @developer shramee */ + /** Plugin admin class */ require 'inc/class-admin.php'; /** Plugin public class */ @@ -114,7 +115,7 @@ private function __construct() { self::$file = __FILE__; self::$url = plugin_dir_url( __FILE__ ); self::$path = plugin_dir_path( __FILE__ ); - self::$version = '1.0.0'; + self::$version = '1.1.0'; add_action( 'init', array( $this, 'init' ) ); } // End __construct()