Skip to content

Commit

Permalink
* Fix missing viewport
Browse files Browse the repository at this point in the history
* Update version to 0.4.8
  • Loading branch information
nicomollet committed May 11, 2018
1 parent c0b94cc commit 6d8128c
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
### Unreleased


### 0.4.8: May 11th, 2018
* Fix obsolete function calls
* Fix conflict in Elementor
* Fix missing viewport

### 0.4.7: January 31st, 2018
* **Tweak** - Remove automatic last-child bottom
Expand Down
11 changes: 11 additions & 0 deletions inc/front/styles.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,17 @@ function stormbringer_livereload(){
}
add_action( 'wp_head', 'stormbringer_livereload' );

/**
* Viewport
*/
function stormbringer_viewport(){
echo '<meta name="viewport" content="width=device-width, initial-scale=1">';
}
add_action( 'wp_head', 'stormbringer_viewport' );

/**
* Theme Libraries CSS
*/
function stormbringer_css() {

if(current_theme_supports('libraries')) {
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": "stormbringer",
"version": "0.4.7",
"version": "0.4.8",
"description": "WordPress theme",
"license": "Apache-2.0",
"repository" : {
Expand Down
2 changes: 1 addition & 1 deletion stormbringer-child/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stormbringer",
"version": "0.4.7",
"version": "0.4.8",
"description": "WordPress theme",
"license": "Apache-2.0",
"repository" : {
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/nicomollet/stormbringer
Github Theme URI: https://github.com/nicomollet/stormbringer
Github Branch: master
Description: A simple responsive theme based on twitter's bootstrap framework.
Version: 0.4.7
Version: 0.4.8
Author: Nicolas Mollet
Author URI: http://www.nicolasmollet.com
Text Domain: stormbringer
Expand Down

0 comments on commit 6d8128c

Please sign in to comment.