Skip to content

Commit

Permalink
v1.2.4 Build
Browse files Browse the repository at this point in the history
  • Loading branch information
mirucon committed Sep 2, 2017
1 parent 878fde8 commit 1a21eb6
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion assets/css/cd-style.min.css

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ function cd_scripts() {
wp_enqueue_style( 'GoogleFonts', '//fonts.googleapis.com/css?family=Lato:300,400,700' );
wp_enqueue_script( 'comment-reply' );
if ( cd_use_minified_css() ) {
wp_enqueue_style( 'cd-style', get_template_directory_uri() . '/assets/css/cd-style.min.css', array(), '1.2.3' );
wp_enqueue_style( 'cd-style', get_template_directory_uri() . '/assets/css/cd-style.min.css', array(), '1.2.4' );
} else {
wp_enqueue_style( 'cd-style', get_template_directory_uri() . '/style.css', array(), '1.2.3' );
wp_enqueue_style( 'cd-style', get_template_directory_uri() . '/style.css', array(), '1.2.4' );
}
if ( cd_use_minified_js() ) {
wp_enqueue_script( 'cd-script', get_template_directory_uri() . '/assets/js/cd-scripts.min.js', array( 'jquery' ), '1.2.3', true );
wp_enqueue_script( 'cd-script', get_template_directory_uri() . '/assets/js/cd-scripts.min.js', array( 'jquery' ), '1.2.4', true );
} else {
wp_enqueue_script( 'cd-script', get_template_directory_uri() . '/js/cd-scripts.js', array( 'jquery' ), '1.2.3', true );
wp_enqueue_script( 'cd-script', get_template_directory_uri() . '/js/cd-scripts.js', array( 'jquery' ), '1.2.4', true );
}
wp_add_inline_script( 'cd-script', "jQuery(function($) { $('.entry img').parent('a').css({'box-shadow':'none'}); });" );
// Load Masonry for making responsive sidebar.
Expand Down
8 changes: 7 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
A beautiful blog-focused WordPress theme - Coldbox. It helps increase site traffic from Google and SNS. It is easy to customize, lightweight, SEO friendly, and quicker load. This theme is fully laid out with the Flexbox module, that is, it is really flexible.

**Contributors**: [@mirucon](https://profiles.wordpress.org/mirucon/)
**Version**: 1.2.3
**Version**: 1.2.4
**Requires at least**: version 4.5 or higher
**Tested up to**: WordPress 4.8.1
**Requires PHP**: 5.2.4
Expand Down Expand Up @@ -67,6 +67,12 @@ Copyright (c) 2011, Thomas Griffin

## Changelog

1.2.4

- Fixed: Function names that are missing prefixes
- Fixed: The widget's filter elements
- Improved: Credit link

1.2.3

- Fixed: Customizer options
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: mirucon
Requires at least: version 4.5 or higher
Tested up to: WordPress 4.8.1
Requires PHP: 5.2.4
Version: 1.2.3
Version: 1.2.4
License: GPL v2.0 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, left-sidebar, grid-layout, translation-ready, flexible-header, custom-background, custom-header, custom-colors, custom-menu, featured-images, post-formats, sticky-post, theme-options, editor-style, threaded-comments, custom-logo
Expand Down Expand Up @@ -54,6 +54,10 @@ URL: http://tgmpluginactivation.com/

== Changelog ==

= 1.2.4 =

* https://github.com/Mirucon/coldbox/releases/tag/v1.2.4

= 1.2.3 =

* https://github.com/Mirucon/coldbox/releases/tag/v1.2.3
Expand Down
2 changes: 1 addition & 1 deletion sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Theme Name: Coldbox
Theme URI: https://coldbox.miruc.co/
Description: Coldbox is a clean blog-focused WordPress theme. It helps increase site traffic from Google and SNS. It is easy to customize, lightweight, SEO friendly, and quicker load. This theme is fully laid out with the Flexbox module, that is, it is really flexible. See Demo: https://coldbox.miruc.co/demo/
Version: 1.2.3
Version: 1.2.4
Author: Toshihiro Kanai (Mirucon)
Author URI: https://miruc.co/
Tags: blog, one-column, two-columns, right-sidebar, left-sidebar, grid-layout, translation-ready, flexible-header, custom-background, custom-header, custom-colors, custom-menu, featured-images, post-formats, sticky-post, theme-options, editor-style, threaded-comments, custom-logo
Expand Down
4 changes: 1 addition & 3 deletions style.css

Large diffs are not rendered by default.

0 comments on commit 1a21eb6

Please sign in to comment.