Skip to content

Commit

Permalink
2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
stiofan committed Oct 7, 2021
1 parent 7844e43 commit ffbd740
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
3 changes: 3 additions & 0 deletions change-log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
= 2.0.2 =
* Elementor Pro will cause fatal error if old style register_widget is calles - FIXED

= 2.0.1 =
* Added missing static functions to main class for backwards comparability - FIXED

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ayecode/wp-super-duper",
"version": "2.0.1",
"version": "2.0.2",
"type": "library",
"description": "Lets you create a widget, block and shortcode all from the one file .",
"keywords": ["WordPress","super duper","wp"],
Expand Down
9 changes: 8 additions & 1 deletion wp-super-duper.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
abstract class WP_Super_Duper {

public $version = "2.0.1";
public $version = "2.0.2";
public $font_awesome_icon_version = "5.11.2";
public $block_code;
public $options;
Expand Down Expand Up @@ -749,6 +749,13 @@ public static function load_widgets_setting_html() {
public function _register(){
// backwards compatibility
}

/**
* Prevents elementor errors if called the SDv1 way.
*/
public function _set(){
// backwards compatibility for elementor pro
}

/**
* Output the version in the admin header.
Expand Down

0 comments on commit ffbd740

Please sign in to comment.