Skip to content

Commit

Permalink
Fixed: Compatibility with WP5.3 and Font Awesome
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdeborba committed Nov 26, 2019
1 parent 6e0a496 commit c9a0f5e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion assets/css/widgets.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion includes/wizard/classes/QuietSkin.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function after() {
}
}

public function feedback($string) { /* no output */
public function feedback($string, ...$args) { /* no output */
}

}
4 changes: 2 additions & 2 deletions ocean-extra.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Ocean Extra
* Plugin URI: https://oceanwp.org/extension/ocean-extra/
* Description: Add extra features like widgets, metaboxes, import/export and a panel to activate the premium extensions.
* Version: 1.5.17
* Version: 1.5.19
* Author: OceanWP
* Author URI: https://oceanwp.org/
* Requires at least: 4.5.0
Expand Down Expand Up @@ -86,7 +86,7 @@ public function __construct( $widget_areas = array() ) {
$this->token = 'ocean-extra';
$this->plugin_url = plugin_dir_url( __FILE__ );
$this->plugin_path = plugin_dir_path( __FILE__ );
$this->version = '1.5.17';
$this->version = '1.5.19';

define( 'OE_URL', $this->plugin_url );
define( 'OE_PATH', $this->plugin_path );
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: oceanwp
Tags: widgets, meta box, metaboxes, metabox, oceanwp
Requires at least: 4.6
Tested up to: 5.2
Stable tag: 1.5.17
Stable tag: 1.5.19
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -32,6 +32,13 @@ This plugin will only work with the [OceanWP](https://oceanwp.org/) theme.

== Changelog ==

= 1.5.19 =
- Fixed: Icon issue.
- Fixed: Compatibility with WP5.3

= 1.5.18 =
- Fixed: Fatal Error.

= 1.5.17 =
- Added: Updated to FontAwesome-5 to fix the version conflict.

Expand Down
4 changes: 2 additions & 2 deletions sass/components/_widget-custom-links.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
color: $color-2;

&:before {
content: '\f10c';
content: '\f111';
display: inline-block;
color: $color-4;
font-size: 10px;
margin-right: 10px;
margin-top: -2px;
font-family: 'Font Awesome 5 Free';
font-weight: 600;
font-weight: 400;
vertical-align: middle;
zoom: 1;
}
Expand Down

0 comments on commit c9a0f5e

Please sign in to comment.