Skip to content

Commit

Permalink
Fix enumerating grid in columns, release 9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Sep 1, 2022
1 parent 8641425 commit 8b8249a
Show file tree
Hide file tree
Showing 12 changed files with 34 additions and 32 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
### [Unreleased]
### 9.1.0: 2022-09-01

* Improve post title color and size accessibility in Gutenberg editor
* Remove unnecessary float reset from nav item
* Add image-background-layer to image helper classes
* Fix enumerating grid in columns
* Bump tested up WordPress version to 6.0.2

### 9.0.9: 2022-08-25

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ Starting from v2.6.0 WooCommerce support comes with [Air helper](https://github.

* PHP >= 7.4
* Requires at least: WordPress 4.7.1
* Tested up to WordPress 6.0.0
* Tested up to WordPress 6.0.2

### Recommendations for development

Expand Down
4 changes: 2 additions & 2 deletions bin/tasks/additions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ chmod 777 ${PROJECT_PATH}/media

echo "${YELLOW}Generating default README.md...${TXTRESET}"

NEWEST_AIR_VERSION="9.0.9"
NEWEST_WORDPRESS_VERSION="6.0.0"
NEWEST_AIR_VERSION="9.1.0"
NEWEST_WORDPRESS_VERSION="6.0.2"
NEWEST_PHP_VERSION="7.4"
CURRENT_DATE=$(LC_TIME=en_US date '+%d %b %Y' |tr ' ' '_');
echo "# ${PROJECT_NAME}
Expand Down
18 changes: 9 additions & 9 deletions css/dev/global.css

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions css/dev/gutenberg-editor-styles.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/prod/global.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/prod/gutenberg-editor-styles.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @Date: 2019-10-15 12:30:02
* @Last Modified by: Roni Laukkarinen
* @Last Modified time: 2022-08-25 14:22:07
* @Last Modified time: 2022-09-01 16:05:39
*
* @package air-light
*/
Expand All @@ -17,7 +17,7 @@
/**
* The current version of the theme.
*/
define( 'AIR_LIGHT_VERSION', '9.0.9' );
define( 'AIR_LIGHT_VERSION', '9.1.0' );

// We need to have some defaults as comments or empties so let's allow this:
// phpcs:disable Squiz.Commenting.InlineComment.SpacingBefore, WordPress.Arrays.ArrayDeclarationSpacing.SpaceInEmptyArray
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "air-light",
"version": "9.0.9",
"version": "9.1.0",
"description": "A minimalist WordPress starter theme.",
"author": "Digitoimisto Dude Oy ([email protected])",
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Contributors: Digitoimisto Dude Oy
Tags: one-column, accessibility-ready, translation-ready

Requires at least: 5.0
Tested up to: 6.0.0
Stable tag: 9.0.9
Tested up to: 6.0.2
Stable tag: 9.1.0
License: MIT License
License URI: https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion sass/gutenberg/blocks/_core-columns.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
@media (max-width: 900px) {
display: grid;
grid-gap: 1em;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat($i, 1fr);
width: 100%;

.wp-block-column {
Expand Down
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/digitoimistodude/air-light
Author: Digitoimisto Dude Oy
Author URI: https://www.dude.fi
Description: Hi. I'm a starter theme called <code>Air-light</code>, or <em>air</em>, if you like. I'm a theme based on Automattic's underscores and I'm meant for hacking so don't use me as a <em>Parent Theme</em> as-is. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Version: 9.0.9
Version: 9.1.0
------8<----------
Please do this before your actual theme is ready to go live:
Expand All @@ -20,7 +20,7 @@ If you see this, contact the site admin.
/*---------------------------------------------------------------
>>> Air-light theme version information, only for AIR developers
-----------------------------------------------------------------
@version 2022-08-25
@version 2022-09-01
@since 2016-01-28
Tested up to: 5.9.3
Expand Down

0 comments on commit 8b8249a

Please sign in to comment.