Skip to content

Commit

Permalink
2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jameskoster committed May 11, 2016
1 parent 3431316 commit e095ffb
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 8 deletions.
8 changes: 6 additions & 2 deletions inc/class-boutique-customizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,13 @@ public function __construct() {

add_action( 'wp_enqueue_scripts', array( $this, 'add_customizer_css' ), 1000 );
add_action( 'customize_register', array( $this, 'edit_default_controls' ), 99 );
add_action( 'customize_register', array( $this, 'edit_default_customizer_settings' ), 99 );
add_action( 'init', array( $this, 'default_theme_mod_values' ) );
add_filter( 'storefront_setting_default_values', array( $this, 'get_boutique_defaults' ) );

/**
* The following can be removed when Storefront 2.1 lands
*/
add_action( 'init', array( $this, 'default_theme_mod_values' ) );
add_action( 'customize_register', array( $this, 'edit_default_customizer_settings' ), 99 );
if ( version_compare( $storefront_version, '2.0.0', '<' ) ) {
add_action( 'init', array( $this, 'default_theme_settings' ) );
}
Expand Down
4 changes: 4 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Boutique is a child theme for Storefront meaning that both themes must be instal

== Changelog ==

= 2016.05.11 - 2.0.4 =
* Tweak - Adopt Storefront 2.0's methods for applying default settings.
* Fix - Support for WordPress 4.5's custom logo feature.

= 2016.04.21 - 2.0.3 =
* Fix - Duplicated content on the homepage.

Expand Down
8 changes: 6 additions & 2 deletions style-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Description: A Storefront child theme designed for small WooCommerce stores / bo
Author: WooThemes
Author URI: http://woothemes.com
Template: storefront
Version: 2.0.3
Version: 2.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Expand Down Expand Up @@ -289,7 +289,11 @@ table.cart td.actions {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -0.53em rgba(0, 0, 0, 0.05);
background: #212121;
clear: both; }
.site-branding, .site-search, .site-header-cart, .site-logo-anchor {
.site-branding,
.site-search,
.site-header-cart,
.site-logo-anchor,
.custom-logo-link {
margin-bottom: 4.236em; }
.site-header {
padding-top: 4.236em; }
Expand Down
8 changes: 6 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Description: A Storefront child theme designed for small WooCommerce stores / bo
Author: WooThemes
Author URI: http://woothemes.com
Template: storefront
Version: 2.0.3
Version: 2.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Expand Down Expand Up @@ -289,7 +289,11 @@ table.cart td.actions {
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -0.53em rgba(0, 0, 0, 0.05);
background: #212121;
clear: both; }
.site-branding, .site-search, .site-header-cart, .site-logo-anchor {
.site-branding,
.site-search,
.site-header-cart,
.site-logo-anchor,
.custom-logo-link {
margin-bottom: 4.236em; }
.site-header {
padding-top: 4.236em; }
Expand Down
8 changes: 6 additions & 2 deletions style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Description: A Storefront child theme designed for small WooCommerce stores / bo
Author: WooThemes
Author URI: http://woothemes.com
Template: storefront
Version: 2.0.3
Version: 2.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Expand Down Expand Up @@ -373,7 +373,11 @@ table.cart {
clear: both;
}

.site-branding, .site-search, .site-header-cart, .site-logo-anchor {
.site-branding,
.site-search,
.site-header-cart,
.site-logo-anchor,
.custom-logo-link {
margin-bottom: 4.236em;
}

Expand Down

0 comments on commit e095ffb

Please sign in to comment.