Skip to content

Commit

Permalink
v3.3.0 build
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeo committed Dec 17, 2016
1 parent 5df3af1 commit d2b1923
Show file tree
Hide file tree
Showing 18 changed files with 320 additions and 253 deletions.
7 changes: 6 additions & 1 deletion assets/czr/css/czr-control.css
Original file line number Diff line number Diff line change
Expand Up @@ -2426,10 +2426,11 @@ body.czr-skop-loading #customize-preview {
-o-transition: all, 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
visibility: hidden;
background: rgba(0, 0, 0, 0.63);
background: rgba(0, 0, 0, 0.80);
}
#czr-top-note h2 {
color: #fff;
font-size: 25px
}
#czr-top-note a {
color: #fff;
Expand All @@ -2453,6 +2454,10 @@ body.czr-skop-loading #customize-preview {
line-height: 20px;
width: 80%;
}
#czr-top-note .czr-note-message {
font-size: 16px;
line-height: 20px;
}
body.czr-top-note-open #czr-top-note {
top: 0;
visibility: inherit;
Expand Down
2 changes: 1 addition & 1 deletion assets/czr/css/czr-control.min.css

Large diffs are not rendered by default.

507 changes: 279 additions & 228 deletions assets/czr/js/czr-control.js

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions assets/czr/js/czr-control.min.js

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions functions/class-utils-settings-map.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,15 +389,17 @@ function hu_comments_sec() {
'label' => __('Posts Comments', 'hueman'),
'section' => 'comments_sec',
'type' => 'checkbox',
'notice' => __( 'Comments on posts' , 'hueman' )
'notice' => __( 'Comments on posts' , 'hueman' ),
'active_callback' => 'hu_is_single'
),
'page-comments' => array(
'default' => 0,
'control' => 'HU_controls',
'label' => __('Pages Comments', 'hueman'),
'section' => 'comments_sec',
'type' => 'checkbox',
'notice' => __( 'Comments on pages' , 'hueman' )
'notice' => __( 'Comments on pages' , 'hueman' ),
'active_callback' => 'hu_is_page'
)
);
}
Expand Down
9 changes: 9 additions & 0 deletions functions/init-functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,15 @@ function hu_is_post_list() {
);
}

/**
* helper
* used to define active callback in the customizer
* => is_single triggers an error in 4.7
* @return bool
*/
function hu_is_page() {
return is_page();
}

/**
* helper
Expand Down
2 changes: 1 addition & 1 deletion grunt-tasks-config
2 changes: 1 addition & 1 deletion languages/es_VE.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.2.13-beta5\n"
"Project-Id-Version: Hueman v3.3.0\n"
"POT-Creation-Date: 2016-05-30 08:46+0200\n"
"PO-Revision-Date: 2016-05-30 08:46+0200\n"
"Last-Translator: José Subero | @arawako and Ernesto Chapon <jose.Language-"
Expand Down
2 changes: 1 addition & 1 deletion languages/hr_HR.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.2.13-beta5\n"
"Project-Id-Version: Hueman v3.3.0\n"
"POT-Creation-Date: 2016-05-30 08:47+0200\n"
"PO-Revision-Date: 2016-05-30 08:47+0200\n"
"Last-Translator: zcuric <[email protected]>\n"
Expand Down
2 changes: 1 addition & 1 deletion languages/id_ID.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.2.13-beta5\n"
"Project-Id-Version: Hueman v3.3.0\n"
"POT-Creation-Date: 2016-08-31 16:10+0200\n"
"PO-Revision-Date: 2016-08-31 16:10+0200\n"
"Last-Translator: \n"
Expand Down
2 changes: 1 addition & 1 deletion languages/pt_BR.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.2.13-beta5\n"
"Project-Id-Version: Hueman v3.3.0\n"
"POT-Creation-Date: 2016-05-30 08:47+0200\n"
"PO-Revision-Date: 2016-05-30 08:47+0200\n"
"Last-Translator: Elvis Henrique Pereira <[email protected]>\n"
Expand Down
2 changes: 1 addition & 1 deletion languages/ru_RU.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.2.13-beta5\n"
"Project-Id-Version: Hueman v3.3.0\n"
"POT-Creation-Date: 2016-11-09 09:47+0100\n"
"PO-Revision-Date: 2016-11-09 09:47+0100\n"
"Last-Translator: kirill belotserkovskiy <[email protected]>\n"
Expand Down
2 changes: 1 addition & 1 deletion languages/tr_TR.po
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
"Project-Id-Version: Hueman v3.2.13-beta5\n"
"Project-Id-Version: Hueman v3.3.0\n"
"POT-Creation-Date: 2016-05-30 08:47+0200\n"
"PO-Revision-Date: 2016-05-30 08:47+0200\n"
"Last-Translator: Mertcan <[email protected]>\n"
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": "hueman",
"version": "3.2.13",
"version": "3.3.0",
"description": "Hueman is a mobile friendly WordPress theme for blogs, magazines and business websites. It's been designed to beautifully display pictures and text content, and engineered to be easy to use and fast. The Hueman theme helps you attract and retain more visitors, that's why it's already used by 70K+ active websites in the world and has received hundreds of five stars ratings.",
"author": "nikeo",
"license": "GNU GPL v3.0",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Hueman v3.2.13-beta5
# Hueman v3.3.0
![Hueman - Free Wordpress Theme](/screenshot.png)

> Hueman is a mobile friendly WordPress theme for blogs, magazines and business websites. It's been designed to beautifully display pictures and text content, and engineered to be easy to use and fast. The Hueman theme helps you attract and retain more visitors, that's why it's already used by 70K+ active websites in the world and has received hundreds of five stars ratings.
Expand Down Expand Up @@ -82,7 +82,7 @@ Right sidebar, top to bottom:
See headers of files for further details.

## Changelog
= 3.2.13 December 17th 2016 =
= 3.3.0 December 17th 2016 =
* fixed : php version older than 5.2 compatibility problem (#361)
* fixed : case when background-attachment is inherit (#363)
* fixed : set option use-header-image default to false
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Hueman v3.2.13-beta5
# Hueman v3.3.0
![Hueman - Free Wordpress Theme](/screenshot.png)

> Hueman is a mobile friendly WordPress theme for blogs, magazines and business websites. It's been designed to beautifully display pictures and text content, and engineered to be easy to use and fast. The Hueman theme helps you attract and retain more visitors, that's why it's already used by 70K+ active websites in the world and has received hundreds of five stars ratings.
Expand Down Expand Up @@ -73,7 +73,7 @@ Right sidebar, top to bottom:
See headers of files for further details.

# Changelog
= 3.2.13 December 17th 2016 =
= 3.3.0 December 17th 2016 =
* fixed : php version older than 5.2 compatibility problem (#361)
* fixed : case when background-attachment is inherit (#363)
* fixed : set option use-header-image default to false
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
Theme Name: Hueman
Theme URI: http://presscustomizr.com/hueman/
Version: 3.2.13-beta5
Version: 3.3.0
Description: Hueman is a mobile friendly WordPress theme for blogs, magazines and business websites. It's been designed to beautifully display pictures and text content, and engineered to be easy to use and fast. The Hueman theme helps you attract and retain more visitors, that's why it's already used by 70K+ active websites in the world and has received hundreds of five stars ratings.
Author: nikeo
Author URI: http://presscustomizr.com
Expand Down

0 comments on commit d2b1923

Please sign in to comment.