From b4cf9823a5e1218d288b5074170ab2b11cc6f2a1 Mon Sep 17 00:00:00 2001 From: Antoine Greuzard Date: Fri, 4 Aug 2023 09:30:59 +0200 Subject: [PATCH] Bump version to 1.5.0 for plugin improvements The version update to 1.5.0 reflects the significant changes implemented to the 'Influactive Forms' plugin. The 'modal-form-brochure.php', 'package-lock.json', 'package.json' and 'README.md' files were updated accordingly. This version bump is integral for tracking the evolution of the project. --- README.md | 2 +- README.txt | 2 +- modal-form-brochure.php | 10 +++++----- package-lock.json | 4 ++-- package.json | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 447169b..8accad1 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Influactive ([https://influactive.com](https://influactive.com)) ## Version -1.4 +1.5.0 ## Installation diff --git a/README.txt b/README.txt index 4ba934a..b35a46a 100644 --- a/README.txt +++ b/README.txt @@ -4,7 +4,7 @@ Donate link: https://influactive.com Tags: modal, form, brochure Requires at least: 5.2 Tested up to: 6.2 -Stable tag: 1.3 +Stable tag: 1.5.0 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Requires PHP: 8.0 diff --git a/modal-form-brochure.php b/modal-form-brochure.php index bfaf85a..067ff81 100644 --- a/modal-form-brochure.php +++ b/modal-form-brochure.php @@ -2,7 +2,7 @@ /** * Plugin Name: Modal Forms Brochure by Influactive * Description: A plugin to display a modal with a form on a link click (#brochure and a parameter ?file=ID). - * Version: 1.4 + * Version: 1.5.0 * Author: Influactive * Author URI: https://influactive.com * Text Domain: influactive-modal-form-brochure @@ -60,8 +60,8 @@ function influactive_load_modal_form_scripts(): void { if ( is_admin() ) { return; } - wp_enqueue_script( 'influactive-modal-form-brochure', plugin_dir_url( __FILE__ ) . 'dist/frontEnd.bundled.js', array(), '1.4', true ); - wp_enqueue_style( 'influactive-modal-form-brochure', plugin_dir_url( __FILE__ ) . 'dist/modal-form-script.bundled.css', array(), '1.4' ); + wp_enqueue_script( 'influactive-modal-form-brochure', plugin_dir_url( __FILE__ ) . 'dist/frontEnd.bundled.js', array(), '1.5.0', true ); + wp_enqueue_style( 'influactive-modal-form-brochure', plugin_dir_url( __FILE__ ) . 'dist/modal-form-script.bundled.css', array(), '1.5.0' ); } add_action( 'wp_enqueue_scripts', 'influactive_load_modal_form_scripts' ); @@ -78,8 +78,8 @@ function influactive_load_admin_scripts( string $hook ): void { return; } wp_enqueue_media(); - wp_enqueue_script( 'influactive-modal-form-brochure-admin', plugin_dir_url( __FILE__ ) . 'dist/backEnd.bundled.js', array(), '1.4', true ); - wp_enqueue_style( 'influactive-modal-form-brochure-admin', plugin_dir_url( __FILE__ ) . 'dist/admin.bundled.css', array(), '1.4' ); + wp_enqueue_script( 'influactive-modal-form-brochure-admin', plugin_dir_url( __FILE__ ) . 'dist/backEnd.bundled.js', array(), '1.5.0', true ); + wp_enqueue_style( 'influactive-modal-form-brochure-admin', plugin_dir_url( __FILE__ ) . 'dist/admin.bundled.css', array(), '1.5.0' ); } add_action( 'admin_enqueue_scripts', 'influactive_load_admin_scripts' ); diff --git a/package-lock.json b/package-lock.json index 7962d80..68ce734 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "influactive-forms", - "version": "1.3.2.1", + "version": "1.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "influactive-forms", - "version": "1.3.2.1", + "version": "1.5.0", "license": "GPL-2.0-only", "dependencies": { "@microsoft/eslint-formatter-sarif": "^3.0.0", diff --git a/package.json b/package.json index daf072b..d19be43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "influactive-forms", - "version": "1.4", + "version": "1.5.0", "description": "A plugin to create custom forms and display them anywhere on your website.", "type": "module", "scripts": {