From aec578c984c35d86f32ded1956d49e467215e72c Mon Sep 17 00:00:00 2001 From: lucha <lucha@paranoici.org> Date: Sat, 15 Sep 2018 16:27:46 -0700 Subject: [PATCH] [auto] plugin: wp2pgpmail 1.24 --- wp-content/plugins/wp2pgpmail/readme.txt | 7 +++++-- wp-content/plugins/wp2pgpmail/wp2pgpmail.php | 10 ++++++++-- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/wp-content/plugins/wp2pgpmail/readme.txt b/wp-content/plugins/wp2pgpmail/readme.txt index 9aaad5ed6..d098e946b 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 31f3f0bfb..7695ceef7 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'); -- GitLab