Skip to content

Commit

Permalink
Bump version to 1.5.0 for plugin improvements
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Antoine Greuzard committed Aug 4, 2023
1 parent fba4575 commit b4cf982
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Influactive ([https://influactive.com](https://influactive.com))

## Version

1.4
1.5.0

## Installation

Expand Down
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions modal-form-brochure.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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' );
Expand All @@ -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' );
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit b4cf982

Please sign in to comment.