Customify – A Theme Customizer Booster - Version 2.5.4

Version Description

  • Improved default font palettes configuration.
Download this release

Release Info

Developer pixelgrade
Plugin Icon Customify – A Theme Customizer Booster
Version 2.5.4
Comparing to
See all releases

Code changes from version 2.5.3 to 2.5.4

customify.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Customify
4
  * Plugin URI: https://wordpress.org/plugins/customify/
5
  * Description: A Theme Customizer Booster to easily and consistently customize Fonts, Colors, and other options for your site.
6
- * Version: 2.5.3
7
  * Author: Pixelgrade
8
  * Author URI: https://pixelgrade.com
9
  * Author Email: contact@pixelgrade.com
@@ -32,7 +32,7 @@ require_once 'includes/extras.php';
32
  function PixCustomifyPlugin() {
33
  require_once plugin_dir_path( __FILE__ ) . 'includes/class-pixcustomify.php';
34
 
35
- return PixCustomifyPlugin::instance( __FILE__, '2.5.3' );
36
  }
37
 
38
  // Now get the party started
3
  * Plugin Name: Customify
4
  * Plugin URI: https://wordpress.org/plugins/customify/
5
  * Description: A Theme Customizer Booster to easily and consistently customize Fonts, Colors, and other options for your site.
6
+ * Version: 2.5.4
7
  * Author: Pixelgrade
8
  * Author URI: https://pixelgrade.com
9
  * Author Email: contact@pixelgrade.com
32
  function PixCustomifyPlugin() {
33
  require_once plugin_dir_path( __FILE__ ) . 'includes/class-pixcustomify.php';
34
 
35
+ return PixCustomifyPlugin::instance( __FILE__, '2.5.4' );
36
  }
37
 
38
  // Now get the party started
includes/class-customify-font-palettes.php CHANGED
@@ -376,7 +376,7 @@ class Customify_Font_Palettes {
376
  'label' => esc_html__( 'Font Primary', 'customify' ),
377
  'default' => array(
378
  'font-family' => 'Montserrat',
379
- 'font-weight' => '400',
380
  'font-size' => 20,
381
  'line-height' => 1.25,
382
  'letter-spacing' => 0.029,
@@ -463,7 +463,7 @@ class Customify_Font_Palettes {
463
  'label' => esc_html__( 'Font Accent', 'customify' ),
464
  'default' => array(
465
  'font-family' => 'Montserrat',
466
- 'font-weight' => '400',
467
  'font-size' => 20,
468
  'line-height' => 1.25,
469
  'letter-spacing' => 0.029,
@@ -815,7 +815,7 @@ class Customify_Font_Palettes {
815
  ),
816
  array(
817
  'start' => 13,
818
- 'font_weight' => 400,
819
  'letter_spacing' => '0.015em',
820
  'text_transform' => 'uppercase',
821
  ),
@@ -933,7 +933,7 @@ class Customify_Font_Palettes {
933
  // Used for Body Font [eg. entry-content]
934
  'sm_font_body' => array(
935
  'font_family' => 'PT Serif',
936
- 'font_weights' => array( 'regular', '400italic', 700, '700italic' ),
937
  'font_size_to_line_height_points' => array(
938
  array( 15, 1.7 ),
939
  array( 18, 1.5 ),
@@ -1002,7 +1002,7 @@ class Customify_Font_Palettes {
1002
  ),
1003
  array(
1004
  'start' => 25,
1005
- 'font_weight' => 400,
1006
  'letter_spacing' => '0.04em',
1007
  'text_transform' => 'uppercase',
1008
  ),
@@ -1119,7 +1119,7 @@ class Customify_Font_Palettes {
1119
  'font_styles_intervals' => array(
1120
  array(
1121
  'start' => 0,
1122
- 'font_weight' => 400,
1123
  'letter_spacing' => '0em',
1124
  'text_transform' => 'none',
1125
  ),
@@ -1138,7 +1138,7 @@ class Customify_Font_Palettes {
1138
  array(
1139
  'start' => 0,
1140
  'end' => 15,
1141
- 'font_weight' => 400,
1142
  'letter_spacing' => '0em',
1143
  'text_transform' => 'none',
1144
  ),
@@ -1164,7 +1164,7 @@ class Customify_Font_Palettes {
1164
  'font_styles_intervals' => array(
1165
  array(
1166
  'start' => 0,
1167
- 'font_weight' => 400,
1168
  'letter_spacing' => 0,
1169
  'text_transform' => 'none',
1170
  ),
376
  'label' => esc_html__( 'Font Primary', 'customify' ),
377
  'default' => array(
378
  'font-family' => 'Montserrat',
379
+ 'font-weight' => 'regular',
380
  'font-size' => 20,
381
  'line-height' => 1.25,
382
  'letter-spacing' => 0.029,
463
  'label' => esc_html__( 'Font Accent', 'customify' ),
464
  'default' => array(
465
  'font-family' => 'Montserrat',
466
+ 'font-weight' => 'regular',
467
  'font-size' => 20,
468
  'line-height' => 1.25,
469
  'letter-spacing' => 0.029,
815
  ),
816
  array(
817
  'start' => 13,
818
+ 'font_weight' => 'regular',
819
  'letter_spacing' => '0.015em',
820
  'text_transform' => 'uppercase',
821
  ),
933
  // Used for Body Font [eg. entry-content]
934
  'sm_font_body' => array(
935
  'font_family' => 'PT Serif',
936
+ 'font_weights' => array( 400, '400italic', 700, '700italic' ),
937
  'font_size_to_line_height_points' => array(
938
  array( 15, 1.7 ),
939
  array( 18, 1.5 ),
1002
  ),
1003
  array(
1004
  'start' => 25,
1005
+ 'font_weight' => 'regular',
1006
  'letter_spacing' => '0.04em',
1007
  'text_transform' => 'uppercase',
1008
  ),
1119
  'font_styles_intervals' => array(
1120
  array(
1121
  'start' => 0,
1122
+ 'font_weight' => 'regular',
1123
  'letter_spacing' => '0em',
1124
  'text_transform' => 'none',
1125
  ),
1138
  array(
1139
  'start' => 0,
1140
  'end' => 15,
1141
+ 'font_weight' => 'regular',
1142
  'letter_spacing' => '0em',
1143
  'text_transform' => 'none',
1144
  ),
1164
  'font_styles_intervals' => array(
1165
  array(
1166
  'start' => 0,
1167
+ 'font_weight' => 'regular',
1168
  'letter_spacing' => 0,
1169
  'text_transform' => 'none',
1170
  ),
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: pixelgrade, vlad.olaru, babbardel, razvanonofrei
3
  Tags: customizer, css, editor, gutenberg, live, preview, customizer
4
  Requires at least: 4.9.9
5
  Tested up to: 5.2.3
6
- Stable tag: 2.5.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -45,6 +45,9 @@ With [Customify](https://github.com/pixelgrade/customify), developers can easily
45
 
46
  == Changelog ==
47
 
 
 
 
48
  = 2.5.3 =
49
  * Fixed as series of issues with Font Palettes in Style Manager.
50
  * Improved the Color Palettes.
3
  Tags: customizer, css, editor, gutenberg, live, preview, customizer
4
  Requires at least: 4.9.9
5
  Tested up to: 5.2.3
6
+ Stable tag: 2.5.4
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
45
 
46
  == Changelog ==
47
 
48
+ = 2.5.4 =
49
+ * Improved default font palettes configuration.
50
+
51
  = 2.5.3 =
52
  * Fixed as series of issues with Font Palettes in Style Manager.
53
  * Improved the Color Palettes.