Hueman Addons - Version 2.0.4

Version Description

: December 21st, 2016 = * fixed : it was not possible to set static front page and post page layout independently * fixed : removed anonymous callback assigned to "hu_hueman_loaded" used to print dev logs * fixed : undefined hu_is_customize_preview_frame() function

Download this release

Release Info

Developer nikeo
Plugin Icon 128x128 Hueman Addons
Version 2.0.4
Comparing to
See all releases

Code changes from version 2.0.3 to 2.0.4

Files changed (4) hide show
  1. ha-fire.php +2 -2
  2. inc/skop/czr-skop.php +2 -2
  3. lang/en_US.po +1 -1
  4. readme.txt +6 -1
ha-fire.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Hueman Addons
4
  * Plugin URI: http://presscustomizr.com
5
  * Description: Hueman Theme Addons
6
- * Version: 2.0.3
7
  * Text Domain: hueman-addons
8
  * Author: Press Customizr
9
  * Author URI: http://presscustomizr.com
@@ -38,7 +38,7 @@ if ( ! class_exists( 'HU_AD' ) ) :
38
  self::$instance =& $this;
39
 
40
  //last version sync
41
- $this -> last_theme_version_fmk_sync = '3.3.1';
42
  $this -> minimal_authorized_theme_version = '3.3.0';
43
 
44
  //checks if is customizing : two context, admin and front (preview frame)
3
  * Plugin Name: Hueman Addons
4
  * Plugin URI: http://presscustomizr.com
5
  * Description: Hueman Theme Addons
6
+ * Version: 2.0.4
7
  * Text Domain: hueman-addons
8
  * Author: Press Customizr
9
  * Author URI: http://presscustomizr.com
38
  self::$instance =& $this;
39
 
40
  //last version sync
41
+ $this -> last_theme_version_fmk_sync = '3.3.2';
42
  $this -> minimal_authorized_theme_version = '3.3.0';
43
 
44
  //checks if is customizing : two context, admin and front (preview frame)
inc/skop/czr-skop.php CHANGED
@@ -447,7 +447,8 @@ function ha_get_query_skope() {
447
  $obj_id = 'search';
448
  if ( is_date() )
449
  $obj_id = 'date';
450
- if ( hu_is_home() )
 
451
  $obj_id = 'home';
452
 
453
  return apply_filters( 'ha_get_query_skope' , array( 'meta_type' => $meta_type , 'type' => $type , 'obj_id' => $obj_id ) , $current_obj );
@@ -2837,7 +2838,6 @@ if ( defined('TC_DEV') && true === TC_DEV ) {
2837
  );
2838
  }
2839
  }
2840
- add_action('hu_hueman_loaded', 'ha_instantiate_dev_logs', 100 );
2841
  }
2842
  }
2843
 
447
  $obj_id = 'search';
448
  if ( is_date() )
449
  $obj_id = 'date';
450
+ $skope_is_home = ( is_home() && ( 'posts' == get_option( 'show_on_front' ) || '__nothing__' == get_option( 'show_on_front' ) ) ) || is_front_page();
451
+ if ( $skope_is_home )
452
  $obj_id = 'home';
453
 
454
  return apply_filters( 'ha_get_query_skope' , array( 'meta_type' => $meta_type , 'type' => $type , 'obj_id' => $obj_id ) , $current_obj );
2838
  );
2839
  }
2840
  }
 
2841
  }
2842
  }
2843
 
lang/en_US.po CHANGED
@@ -1,6 +1,6 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Hueman Addons v2.0.3\n"
4
  "POT-Creation-Date: 2016-12-19 18:13+0100\n"
5
  "PO-Revision-Date: 2016-12-19 18:14+0100\n"
6
  "Last-Translator: \n"
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Hueman Addons v2.0.4\n"
4
  "POT-Creation-Date: 2016-12-19 18:13+0100\n"
5
  "PO-Revision-Date: 2016-12-19 18:14+0100\n"
6
  "Last-Translator: \n"
readme.txt CHANGED
@@ -5,7 +5,7 @@ Plugin URI: https://wordpress.org/plugins/hueman-addons/
5
  Tags: hueman theme, hueman
6
  Requires at least: 3.4
7
  Tested up to: 4.7
8
- Stable tag: 2.0.3
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -37,6 +37,11 @@ The plugin has been designed specifically for the Hueman WordPress theme. Lightw
37
 
38
 
39
  == Changelog ==
 
 
 
 
 
40
  = 2.0.3 : December 19th, 2016 =
41
  * fixed : retro-compatibility with php version 5.3, removed anonymous callback in action hook.
42
 
5
  Tags: hueman theme, hueman
6
  Requires at least: 3.4
7
  Tested up to: 4.7
8
+ Stable tag: 2.0.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
37
 
38
 
39
  == Changelog ==
40
+ = 2.0.4 : December 21st, 2016 =
41
+ * fixed : it was not possible to set static front page and post page layout independently
42
+ * fixed : removed anonymous callback assigned to "hu_hueman_loaded" used to print dev logs
43
+ * fixed : undefined hu_is_customize_preview_frame() function
44
+
45
  = 2.0.3 : December 19th, 2016 =
46
  * fixed : retro-compatibility with php version 5.3, removed anonymous callback in action hook.
47