SiteOrigin Widgets Bundle - Version 1.17.8

Version Description

  • 28 September 2020 ==
  • Image: Prevent image stretching while using Safari

=

Download this release

Release Info

Developer gpriday
Plugin Icon 128x128 SiteOrigin Widgets Bundle
Version 1.17.8
Comparing to
See all releases

Code changes from version 1.17.7 to 1.17.8

readme.txt CHANGED
@@ -3,8 +3,8 @@ Tags: bundle, widget, button, slider, image, carousel, price table, google maps,
3
  Requires at least: 4.2
4
  Tested up to: 5.5
5
  Requires PHP: 5.6.20
6
- Stable tag: 1.17.7
7
- Build time: 2020-09-10T19:47:59+02:00
8
  License: GPLv3 or later
9
  Contributors: gpriday, braam-genis
10
  Donate link: https://siteorigin.com/downloads/premium/
@@ -66,6 +66,9 @@ The SiteOrigin Widgets Bundle is the perfect platform to build widgets for your
66
 
67
  == Changelog ==
68
 
 
 
 
69
  == 1.17.7 - 10 September 2020 ==
70
  * Hero and Layout Sliders: Disable image preload for images added to frames.
71
  * Resolved a preview issue with widgets that attempt to render sub widgets but don't output them.
3
  Requires at least: 4.2
4
  Tested up to: 5.5
5
  Requires PHP: 5.6.20
6
+ Stable tag: 1.17.8
7
+ Build time: 2020-09-28T19:07:57+02:00
8
  License: GPLv3 or later
9
  Contributors: gpriday, braam-genis
10
  Donate link: https://siteorigin.com/downloads/premium/
66
 
67
  == Changelog ==
68
 
69
+ == 1.17.8 - 28 September 2020 ==
70
+ * Image: Prevent image stretching while using Safari
71
+
72
  == 1.17.7 - 10 September 2020 ==
73
  * Hero and Layout Sliders: Disable image preload for images added to frames.
74
  * Resolved a preview issue with widgets that attempt to render sub widgets but don't output them.
so-widgets-bundle.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: SiteOrigin Widgets Bundle
4
  Description: A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.
5
- Version: 1.17.7
6
  Text Domain: so-widgets-bundle
7
  Domain Path: /lang
8
  Author: SiteOrigin
@@ -12,7 +12,7 @@ License: GPL3
12
  License URI: https://www.gnu.org/licenses/gpl-3.0.txt
13
  */
14
 
15
- define('SOW_BUNDLE_VERSION', '1.17.7');
16
  define('SOW_BUNDLE_BASE_FILE', __FILE__);
17
 
18
  // Allow JS suffix to be pre-set
2
  /*
3
  Plugin Name: SiteOrigin Widgets Bundle
4
  Description: A collection of all widgets, neatly bundled into a single plugin. It's also a framework to code your own widgets on top of.
5
+ Version: 1.17.8
6
  Text Domain: so-widgets-bundle
7
  Domain Path: /lang
8
  Author: SiteOrigin
12
  License URI: https://www.gnu.org/licenses/gpl-3.0.txt
13
  */
14
 
15
+ define('SOW_BUNDLE_VERSION', '1.17.8');
16
  define('SOW_BUNDLE_BASE_FILE', __FILE__);
17
 
18
  // Allow JS suffix to be pre-set
widgets/image/styles/default.less CHANGED
@@ -24,9 +24,13 @@
24
  }
25
 
26
  > a {
27
- display: flex;
28
  width: @image_width;
29
  max-width: @image_max_width;
 
 
 
 
30
  }
31
 
32
  .so-widget-image {
24
  }
25
 
26
  > a {
27
+ display: inline-block;
28
  width: @image_width;
29
  max-width: @image_max_width;
30
+
31
+ @media screen and ( -ms-high-contrast: active ), screen and ( -ms-high-contrast: none ) {
32
+ display: flex;
33
+ }
34
  }
35
 
36
  .so-widget-image {