Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder - Version 1.4.2

Version Description

  • 15.02.2019 =
  • Added: Fixed: Text Color(Light/Dark) frontend css classes not added on Supreme Text Divider Module.
Download this release

Release Info

Developer divisupreme
Plugin Icon 128x128 Supreme Modules Lite – Divi Theme, Extra Theme and Divi Builder
Version 1.4.2
Comparing to
See all releases

Code changes from version 1.4.1 to 1.4.2

includes/modules/TextDivider/TextDivider.php CHANGED
@@ -187,6 +187,7 @@ class DSM_Text_Divider extends ET_Builder_Module {
187
  $divider_position = $this->props['divider_position'];
188
  $divider_weight = $this->props['divider_weight'];
189
  $text_gap = $this->props['text_gap'];
 
190
  $header_level = $this->props['header_level'];
191
 
192
  $video_background = $this->video_background();
@@ -278,7 +279,7 @@ class DSM_Text_Divider extends ET_Builder_Module {
278
  ) );
279
  }
280
 
281
- $class = "dsm-text-divider-wrapper dsm-text-divider-align-{$text_alignment}";
282
 
283
  // Render module content
284
  $output = sprintf(
187
  $divider_position = $this->props['divider_position'];
188
  $divider_weight = $this->props['divider_weight'];
189
  $text_gap = $this->props['text_gap'];
190
+ $background_layout = $this->props['background_layout'];
191
  $header_level = $this->props['header_level'];
192
 
193
  $video_background = $this->video_background();
279
  ) );
280
  }
281
 
282
+ $class = "dsm-text-divider-wrapper dsm-text-divider-align-{$text_alignment} et_pb_bg_layout_{$background_layout}";
283
 
284
  // Render module content
285
  $output = sprintf(
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://suprememodules.com/
5
  Requires at least: 4.5
6
  Tested up to: 5.0.3
7
  Requires PHP: 5.6
8
- Stable tag: 1.4.1
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -87,6 +87,9 @@ Divi Builder >= version 2.1
87
  PHP version >= 5.6
88
 
89
  == Changelog ==
 
 
 
90
  = 1.4.1 - 04.02.2019 =
91
  * Added: Quick links(Settings, Documentation and Get Support) to plugin page.
92
 
5
  Requires at least: 4.5
6
  Tested up to: 5.0.3
7
  Requires PHP: 5.6
8
+ Stable tag: 1.4.2
9
  License: GPLv2
10
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
11
 
87
  PHP version >= 5.6
88
 
89
  == Changelog ==
90
+ = 1.4.2 - 15.02.2019 =
91
+ * Added: Fixed: Text Color(Light/Dark) frontend css classes not added on Supreme Text Divider Module.
92
+
93
  = 1.4.1 - 04.02.2019 =
94
  * Added: Quick links(Settings, Documentation and Get Support) to plugin page.
95
 
supreme-modules-for-divi.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Divi Supreme Modules
4
  Plugin URI: https://suprememodules.com
5
  Description: Supreme Modules enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
6
- Version: 1.4.1
7
  Author: Supreme Modules
8
  Author URI: https://suprememodules.com/about-us/
9
  License: GPL2
@@ -36,7 +36,7 @@ if ( version_compare(PHP_VERSION, '5.6', '<') ) {
36
  add_action( 'admin_notices', 'dsm_admin_notice__php_version_error' );
37
  return;
38
  } else {
39
- define( 'DSM_VERSION', '1.4.1' );
40
 
41
  if ( ! function_exists( 'dsm_initialize_extension' ) ):
42
  /**
3
  Plugin Name: Divi Supreme Modules
4
  Plugin URI: https://suprememodules.com
5
  Description: Supreme Modules enhances the experience and features found on Divi and extend with custom creative modules to help you build amazing websites.
6
+ Version: 1.4.2
7
  Author: Supreme Modules
8
  Author URI: https://suprememodules.com/about-us/
9
  License: GPL2
36
  add_action( 'admin_notices', 'dsm_admin_notice__php_version_error' );
37
  return;
38
  } else {
39
+ define( 'DSM_VERSION', '1.4.2' );
40
 
41
  if ( ! function_exists( 'dsm_initialize_extension' ) ):
42
  /**