Skip to content

Commit

Permalink
Version 2.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mauryaratan committed Apr 6, 2021
1 parent 76feea9 commit 753819a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@ Yes you can! Join me on [Github Repository](https://github.com/mauryaratan/stagt

== Changelog ==

= 2.3.6 - March 31, 2021 =
* Support for WordPress 5.7
* Fixes multiple shortcode output
= 2.3.6 - April 06, 2021 =
* New: Update FontAwesome library to v5.15.3
* Fix: Multiple shortcode output
* Improvements: Support for WordPress 5.7

= 2.3.5 - October 10, 2020 =
* Improve deprecated message formatting for Instagram widget and fix trailing comma error
Expand Down
10 changes: 5 additions & 5 deletions stagtools.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
* Plugin Name: StagTools
* Plugin URI: https://wordpress.org/plugins/stagtools/
* Description: A powerful plugin to extend functionality to your WordPress themes offering shortcodes, font icons, and useful widgets.
* Version: 2.3.5
* Version: 2.3.6
* Author: <a href="https://twitter.com/mauryaratan/">Ram Ratan Maurya</a>, <a href="https://codestag.com/">Codestag</a>
* Author URI: https://codestag.com
* License: GPL2
* Requires at least: 4.0
* Tested up to: 5.5.1
* Tested up to: 5.7
*
* Text Domain: stag
* Domain Path: /languages/
Expand Down Expand Up @@ -270,15 +270,15 @@ public function frontend_includes() {
* @return void
*/
public function frontend_style() {
wp_enqueue_style( 'font-awesome', $this->plugin_url() . '/assets/css/fontawesome-all' . SCRIPT_SUFFIX . '.css', '', '5.6.3', 'all' );
wp_enqueue_style( 'font-awesome', $this->plugin_url() . '/assets/css/fontawesome-all' . SCRIPT_SUFFIX . '.css', '', '5.15.3', 'all' );
wp_register_style( 'stag-shortcode-styles', $this->plugin_url() . '/assets/css/stag-shortcodes.css', array(), $this->version, 'all' );

wp_enqueue_style( 'stag-shortcode-styles' );

wp_register_script( 'stag-shortcode-scripts', $this->plugin_url() . '/assets/js/stag-shortcode-scripts.js', array( 'jquery', 'jquery-ui-accordion', 'jquery-ui-tabs' ), $this->version, true );

wp_enqueue_script( 'font-awesome-v5-svg', $this->plugin_url() . '/assets/js/fontawesome-all.min.js', array(), '5.6.3', true );
wp_enqueue_script( 'font-awesome-v4-shim', $this->plugin_url() . '/assets/js/fa-v4-shims.min.js', array( 'font-awesome-v5-svg' ), '5.6.3', true );
wp_enqueue_script( 'font-awesome-v5-svg', $this->plugin_url() . '/assets/js/fontawesome-all.min.js', array(), '5.15.3', true );
wp_enqueue_script( 'font-awesome-v4-shim', $this->plugin_url() . '/assets/js/fa-v4-shims.min.js', array( 'font-awesome-v5-svg' ), '5.15.3', true );
}

/**
Expand Down

0 comments on commit 753819a

Please sign in to comment.