From 753819a7064bde2ee31a0f80ad6187639bf05b21 Mon Sep 17 00:00:00 2001 From: Ram Ratan Maurya Date: Tue, 6 Apr 2021 12:47:01 +0530 Subject: [PATCH] Version 2.3.6 --- package-lock.json | 2 +- readme.txt | 7 ++++--- stagtools.php | 10 +++++----- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index fbc1357..a1a6328 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "stagtools", - "version": "2.3.3", + "version": "2.3.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/readme.txt b/readme.txt index b26baaa..c89d071 100644 --- a/readme.txt +++ b/readme.txt @@ -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 diff --git a/stagtools.php b/stagtools.php index 0981a89..c22bd52 100644 --- a/stagtools.php +++ b/stagtools.php @@ -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: Ram Ratan Maurya, Codestag * 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/ @@ -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 ); } /**