Skip to content

Commit

Permalink
v1.1.10 (#57)
Browse files Browse the repository at this point in the history
v1.1.10
  • Loading branch information
aristath authored Jul 20, 2019
2 parents 0f21761 + 9a531d2 commit 6734831
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 16 deletions.
4 changes: 2 additions & 2 deletions assets/js/customizer-kirki-gridd-linkcolor.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ wp.customize.controlConstructor['gridd-wcag-lc'] = wp.customize.Control.extend({
minHueDiff: 0,
maxHueDiff: 3,
stepDiff: 3,
stepSaturation: 0.025,
stepLightness: 0.025,
stepSaturation: 0.5,
stepLightness: 0.5,
minLightness: 0.5 < backgroundColorProps.l ? 0 : 0.5,
maxLightness: 0.5 < backgroundColorProps.l ? 0.5 : 1
});
Expand Down
2 changes: 1 addition & 1 deletion docs/grid-parts/breadcrumbs.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you want your breadcrumbs to align with the content or any other grid-part th

<img src="https://wplemon.github.io/gridd/uploads/breadcrumbs-3.png" alt="" style="max-width:300px">

You can adjust the font-size of your breadcrumbs using the slider in this control. The selected size is relevant to the size defined as your main body font-size. So if your main content uses a font-size of `16px`, setting this value to `1` will make your breadcrumbs have the exact same size. If your body font-size is set to `20px` and your breadcrumbs are `0.5em`, then your breadcrumbs will have a size of `10px`.
You can adjust the font-size of your breadcrumbs using the slider in this control. The selected size is relative to the size defined as your main body font-size. So if your main content uses a font-size of `16px`, setting this value to `1` will make your breadcrumbs have the exact same size. If your body font-size is set to `20px` and your breadcrumbs are `0.5em`, then your breadcrumbs will have a size of `10px`.

## Background Color & Text Color

Expand Down
2 changes: 1 addition & 1 deletion docs/grid-parts/contact-information.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ On the top you’ll be able to add your custom content, You an add text and link

When changing the “Background Color” setitng, the Gridd theme will automatically select the color for your text to ensure maximum readability and compliance with WCAG regulations.

The font-size setting is relevant to your main font-size, so a value of 1em will make your contact information have the same size as your main content.
The font-size setting is relative to your main font-size, so a value of 1em will make your contact information have the same size as your main content.

Similarly to other grid parts you can change the padding for this grid-part to add some spacing around your content.

Expand Down
2 changes: 1 addition & 1 deletion docs/grid-parts/search.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Using the “Padding” option you can change the left and right padding of your

You cannot change the vertical padding as the form always takes up 100% of the space assigned to this grid-part and is vertically centered.

Using the font-size control you can change the size of the text inside your form. Please note that the sizes selected in this field are relevant to the body font-size, so a size of 1em will be the same size as your main content.
Using the font-size control you can change the size of the text inside your form. Please note that the sizes selected in this field are relative to the body font-size, so a size of 1em will be the same size as your main content.

Finally, using the background-color and tet-color controls you can change the colors for this grid-part.
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
*
* @since 1.0
*/
define( 'GRIDD_VERSION', '1.1.8' );
define( 'GRIDD_VERSION', '1.1.10' );

/**
* Gracefully fail if the user is on an old PHP version
Expand Down
2 changes: 1 addition & 1 deletion grid-parts/customizer/breadcrumbs.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
'type' => 'slider',
'settings' => 'gridd_grid_breadcrumbs_font_size',
'label' => esc_html__( 'Font Size', 'gridd' ),
'tooltip' => esc_html__( 'Controls the font-size for your breadcrumbs. This value is relevant to the body font-size, so a value of 1em will have the same size as your content.', 'gridd' ),
'tooltip' => esc_html__( 'Controls the font-size for your breadcrumbs. This value is relative to the body font-size, so a value of 1em will have the same size as your content.', 'gridd' ),
'section' => 'gridd_grid_part_details_breadcrumbs',
'default' => 1,
'transport' => 'postMessage',
Expand Down
2 changes: 1 addition & 1 deletion grid-parts/customizer/header-branding.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ function( $wp_customize ) {
'settings' => 'gridd_branding_inline_spacing',
'type' => 'slider',
'label' => esc_html__( 'Spacing between elements', 'gridd' ),
'tooltip' => esc_html__( 'This value is relevant to the site-title font-size.', 'gridd' ),
'tooltip' => esc_html__( 'This value is relative to the site-title font-size.', 'gridd' ),
'section' => 'gridd_grid_part_details_header_branding',
'priority' => 90,
'default' => .5,
Expand Down
2 changes: 1 addition & 1 deletion grid-parts/customizer/header-contact-info.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
'type' => 'slider',
'settings' => 'gridd_grid_part_details_header_contact_info_font_size',
'label' => esc_html__( 'Font Size', 'gridd' ),
'tooltip' => esc_html__( 'The value selected here is relevant to your body font-size, so a value of 1em will be the same size as your content.', 'gridd' ),
'tooltip' => esc_html__( 'The value selected here is relative to your body font-size, so a value of 1em will be the same size as your content.', 'gridd' ),
'section' => 'gridd_grid_part_details_header_contact_info',
'default' => .85,
'transport' => 'postMessage',
Expand Down
2 changes: 1 addition & 1 deletion grid-parts/customizer/header-search.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
'type' => 'slider',
'settings' => 'gridd_grid_part_details_header_search_font_size',
'label' => esc_html__( 'Font Size', 'gridd' ),
'tooltip' => esc_html__( 'The value selected here is relevant to your body font-size, so a value of 1em will be the same size as your content.', 'gridd' ),
'tooltip' => esc_html__( 'The value selected here is relative to your body font-size, so a value of 1em will be the same size as your content.', 'gridd' ),
'section' => 'gridd_grid_part_details_header_search',
'default' => 1,
'transport' => 'postMessage',
Expand Down
2 changes: 1 addition & 1 deletion grid-parts/customizer/nav-handheld.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'gridd_grid_part_details_nav-handheld',
[
'plus' => [
esc_html__( 'Additional item: axpandable widget-area with custom icon', 'gridd' ),
esc_html__( 'Additional item: expandable widget-area with custom icon', 'gridd' ),
],
'docs' => 'https://wplemon.github.io/gridd/grid-parts/mobile-navigation.html',
]
Expand Down
2 changes: 1 addition & 1 deletion inc/customizer/edd.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
[
'title' => esc_html__( 'EDD Grid', 'gridd' ),
'panel' => 'gridd_options',
'description' => '<a href="https://wplemon.github.io/gridd/grid-parts/easy-digital-downloads.html" target="_blank" rel="noopener noreferrer nofollow">' . esc_html__( 'Learn more about these settings', 'gridd' ),
'description' => '<a href="https://wplemon.github.io/gridd/grid-parts/easy-digital-downloads.html" target="_blank" rel="noopener noreferrer nofollow">' . esc_html__( 'Learn more about these settings.', 'gridd' ),
'priority' => 90,
]
);
Expand Down
2 changes: 1 addition & 1 deletion inc/customizer/grid.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function( $wp_customize ) {
'gridd_grid',
[
'plus' => [
esc_html__( 'Separate grid for mobile devices.', 'gridd' ),
esc_html__( 'Separate grid for mobile devices', 'gridd' ),
esc_html__( 'Grid-parts can overlap', 'gridd' ),
],
'docs' => 'https://wplemon.github.io/gridd/customizer-sections/grid.html',
Expand Down
10 changes: 8 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-com
Requires at least: 4.9
Tested up to: 5.2
Requires PHP: 5.6
Stable tag: 1.1.9
Stable tag: 1.1.10
License: GNU General Public License v2.0 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -36,6 +36,12 @@ You can install the theme using the WordPress Administration menu. For more info

== Changelog ==

= 1.1.10 =

* Fix: Text typos.
* Fix: Customizer performance improvement.
* Update: New screenshot.

= 1.1.9 =

* Fix: Improved Customizer performance.
Expand Down Expand Up @@ -171,4 +177,4 @@ You can install the theme using the WordPress Administration menu. For more info
* wcagColors: Script by Aristeidis Stathopoulos (https://aristath.github.io/wcagColors/) licensed under [MIT](https://opensource.org/licenses/MIT)
* Underscores: Parts of the theme's PHP originated in the Underscores starter theme (https://underscores.me/) by Automattic (https://automattic.com/) licenced under [GPL 2.0](https://www.gnu.org/licenses/gpl-2.0.html)
* Mythic: The graceful fallback script for old PHP & WP versions originated in the Mythic starter theme (https://themehybrid.com/themes/mythic) by Justin Tadlock (https://themehybrid.com) licenced under [GPL 2.0](https://www.gnu.org/licenses/gpl-2.0.html)
* Screenshot: Image included in the screenshot from https://stocksnap.io/photo/WUGSHQ3NII licenced under [CC0](https://creativecommons.org/share-your-work/public-domain/cc0/)
* Screenshot: Image included in the screenshot from https://affecttheverb.com/disabledandhere/ licenced under [CC-BY-4](https://creativecommons.org/licenses/by/4.0/)
Binary file modified screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Author: Ari Stathopoulos
* Author URI: https://wplemon.com/
* Description: Built with Accessibility, performance and SEO in mind, the Gridd theme features a unique layout builder allowing you to create any kind of layout with ease.
* Version: 1.1.9
* Version: 1.1.10
* License: GNU General Public License v2.0 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: gridd
Expand Down

0 comments on commit 6734831

Please sign in to comment.