diff --git a/wp-content/plugins/wp2pgpmail/readme.txt b/wp-content/plugins/wp2pgpmail/readme.txt index 9aaad5ed60f9592fbfa37b1f41d81ccf4e4c08d4..d098e946b5881c44eb1faa257b445f62349b7ef6 100644 --- a/wp-content/plugins/wp2pgpmail/readme.txt +++ b/wp-content/plugins/wp2pgpmail/readme.txt @@ -3,8 +3,8 @@ Contributors: wp2pgpmail Donate link: http://wp2pgpmail.com Tags: PGP, mail, contact form, encrypt, crypt, privacy, encode, secure, encryption, GnuPG, GPG Requires at least: 2.9.2 -Tested up to: 4.9.6 -Stable tag: 1.23 +Tested up to: 4.9.7 +Stable tag: 1.24 Requires PHP: 5.6 License: GPLv2 License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -84,6 +84,9 @@ If you want to translate the Pro Edition, please [contact us !](https://wp2pgpma Screenshots are available on the [wp2pgpmail plugin website](https://wp2pgpmail.com/screenshots/). == Changelog == += 1.24 = +* Fixing OpenPGP key support + = 1.23 = * Updating links diff --git a/wp-content/plugins/wp2pgpmail/wp2pgpmail.php b/wp-content/plugins/wp2pgpmail/wp2pgpmail.php index 31f3f0bfb96d9e8ec8cf96f795c616a3f8e64e13..7695ceef7d72984f85df7deeedee5dbfba0b7eee 100644 --- a/wp-content/plugins/wp2pgpmail/wp2pgpmail.php +++ b/wp-content/plugins/wp2pgpmail/wp2pgpmail.php @@ -3,7 +3,7 @@ Plugin Name: wp2pgpmail Plugin URI: http://wp2pgpmail.com Description: A simple PGP Mail Form Plugin for WordPress -Version: 1.23 +Version: 1.24 Author: wp2pgpmail Author URI: http://wp2pgpmail.com License: @@ -36,7 +36,13 @@ function wp2pgpmail_init(){ } function wp2pgpmail_form_enqueue_script() { - wp_enqueue_script( 'wp2pgpmail_script_openpgp', plugin_dir_url( __FILE__ ) . 'js/openpgp.min.js', array( 'jquery' ) ); + wp_enqueue_script( 'wp2pgpmail_script_rsa', plugin_dir_url( __FILE__ ) . 'js/rsa.js' ); + wp_enqueue_script( 'wp2pgpmail_script_aes_enc', plugin_dir_url( __FILE__ ) . 'js/aes-enc.js' ); + wp_enqueue_script( 'wp2pgpmail_script_sha1', plugin_dir_url( __FILE__ ) . 'js/sha1.js' ); + wp_enqueue_script( 'wp2pgpmail_script_base64', plugin_dir_url( __FILE__ ) . 'js/base64.js' ); + wp_enqueue_script( 'wp2pgpmail_script_mouse', plugin_dir_url( __FILE__ ) . 'js/mouse.js' ); + wp_enqueue_script( 'wp2pgpmail_script_pgencode', plugin_dir_url( __FILE__ ) . 'js/PGencode.js' ); + wp_enqueue_script( 'wp2pgpmail_script_openpgp', plugin_dir_url( __FILE__ ) . 'js/openpgp.min.js', array( 'jquery' ) ); } add_action('wp_enqueue_scripts', 'wp2pgpmail_form_enqueue_script');