diff --git a/CHANGELOG.md b/CHANGELOG.md index 611c91e..4c1c741 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ +1.5.4 +===== + +* Tweak: Footer Credit Link +* Tweak: Code Spacing + 1.5.3 ===== + * Tweak: Using the_posts_pagination() and the_post_navination() to display Pagging & Navigation * Tweak: Google Fonts URL * Tweak: Correct file inclusion in functions.php diff --git a/README.md b/README.md index ab8f56d..fc9eda5 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Flat -[![Travis CI Build Status](https://travis-ci.org/yoarts/flat.svg?branch=master)](https://travis-ci.org/yoarts/flat) +[![Travis CI Build Status](https://travis-ci.org/yoarts/flat.svg?branch=master)](https://travis-ci.org/yoarts/flat) [![devDependency Status](https://david-dm.org/yoarts/flat/dev-status.svg)](https://david-dm.org/yoarts/flat#info=devDependencies) * Author: YoArts * Author URL: http://www.yoarts.com * Contributer: @yoarts, @ghost, @ashfame, @kevinpapst, @abovethewater diff --git a/bower.json b/bower.json index d975bd8..94f81e6 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "flat", - "version": "1.5.3", + "version": "1.5.4", "homepage": "http://www.yoarts.com", "authors": [ "Thanh Luu " diff --git a/dist/archive.php b/dist/archive.php index c368a69..3289bc1 100644 --- a/dist/archive.php +++ b/dist/archive.php @@ -18,7 +18,7 @@ - __( '', 'flat' ), 'next_text' => __( '', 'flat' ) ) ); ?> + __( '', 'flat' ), 'next_text' => __( '', 'flat' ) ) ); ?> diff --git a/dist/footer.php b/dist/footer.php index a4c45b8..715694c 100644 --- a/dist/footer.php +++ b/dist/footer.php @@ -7,7 +7,7 @@ diff --git a/dist/functions.php b/dist/functions.php index 06618a7..e008f96 100644 --- a/dist/functions.php +++ b/dist/functions.php @@ -67,7 +67,7 @@ function flat_scripts_styles() { wp_enqueue_script( 'comment-reply' ); } - if ( defined( 'WP_ENV' ) && WP_ENV === 'development' ) { + if ( defined( 'WP_ENV' ) && 'development' === WP_ENV ) { $assets = array( 'css' => '/assets/css/flat.css', 'js' => '/assets/js/flat.js', @@ -110,4 +110,4 @@ function flat_entry_meta( $show_sep = true ) { comments_popup_link( __( '0 Comments', 'flat' ), __( '1 Comment', 'flat' ), __( '% Comments', 'flat' ) ); echo ''; } -endif; \ No newline at end of file +endif; diff --git a/dist/index.php b/dist/index.php index da36a6f..ca68b53 100644 --- a/dist/index.php +++ b/dist/index.php @@ -4,7 +4,7 @@ - __( '', 'flat' ), 'next_text' => __( '', 'flat' ) ) ); ?> + __( '', 'flat' ), 'next_text' => __( '', 'flat' ) ) ); ?> diff --git a/dist/style.css b/dist/style.css index 9f1d780..47c0a3e 100644 --- a/dist/style.css +++ b/dist/style.css @@ -4,7 +4,7 @@ Theme URI: http://www.yoarts.com/wordpress/free-flat-design-wordpress-theme.html Author: YoArts Author URI: http://www.yoarts.com/ Description: Flat is a WordPress Blog Theme designed by YoArts. We would like to say that Flat is both beautiful and charming at the same time. -Version: 1.5.3 +Version: 1.5.4 License: GNU General Public License v3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html Text Domain: flat diff --git a/package.json b/package.json index cf40913..88268f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flat", - "version": "1.5.3", + "version": "1.5.4", "author": "Thanh Luu ", "homepage": "http://www.yoarts.com", "repository": { @@ -23,18 +23,18 @@ "node": ">= 0.10.0" }, "devDependencies": { - "bower": ">=1.3.9", + "bower": ">=1.3.12", "grunt": "~0.4.5", - "grunt-autoprefixer": "~0.8.1", - "grunt-contrib-concat": "~0.4.0", - "grunt-contrib-jshint": "~0.10.0", - "grunt-contrib-less": "~0.11.3", - "grunt-contrib-uglify": "~0.5.0", + "grunt-autoprefixer": "~2.2.0", + "grunt-contrib-concat": "~0.5.0", + "grunt-contrib-jshint": "~0.11.0", + "grunt-contrib-less": "~1.0.0", + "grunt-contrib-uglify": "~0.7.0", "grunt-contrib-watch": "~0.6.1", - "grunt-contrib-compress": "~0.12.0", - "grunt-modernizr": "~0.5.2", + "grunt-contrib-compress": "~0.13.0", + "grunt-modernizr": "~0.6.0", "grunt-wp-assets": "~0.2.6", - "load-grunt-tasks": "~0.6.0", - "time-grunt": "~0.3.2" + "load-grunt-tasks": "~3.1.0", + "time-grunt": "~1.0.0" } }