Skip to content
Snippets Groups Projects
Commit aec578c9 authored by lucha's avatar lucha
Browse files

[auto] plugin: wp2pgpmail 1.24

parent c73848b8
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,8 @@ Contributors: wp2pgpmail ...@@ -3,8 +3,8 @@ Contributors: wp2pgpmail
Donate link: http://wp2pgpmail.com Donate link: http://wp2pgpmail.com
Tags: PGP, mail, contact form, encrypt, crypt, privacy, encode, secure, encryption, GnuPG, GPG Tags: PGP, mail, contact form, encrypt, crypt, privacy, encode, secure, encryption, GnuPG, GPG
Requires at least: 2.9.2 Requires at least: 2.9.2
Tested up to: 4.9.6 Tested up to: 4.9.7
Stable tag: 1.23 Stable tag: 1.24
Requires PHP: 5.6 Requires PHP: 5.6
License: GPLv2 License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html 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 ...@@ -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/). Screenshots are available on the [wp2pgpmail plugin website](https://wp2pgpmail.com/screenshots/).
== Changelog == == Changelog ==
= 1.24 =
* Fixing OpenPGP key support
= 1.23 = = 1.23 =
* Updating links * Updating links
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Plugin Name: wp2pgpmail Plugin Name: wp2pgpmail
Plugin URI: http://wp2pgpmail.com Plugin URI: http://wp2pgpmail.com
Description: A simple PGP Mail Form Plugin for WordPress Description: A simple PGP Mail Form Plugin for WordPress
Version: 1.23 Version: 1.24
Author: wp2pgpmail Author: wp2pgpmail
Author URI: http://wp2pgpmail.com Author URI: http://wp2pgpmail.com
License: License:
...@@ -36,6 +36,12 @@ function wp2pgpmail_init(){ ...@@ -36,6 +36,12 @@ function wp2pgpmail_init(){
} }
function wp2pgpmail_form_enqueue_script() { function wp2pgpmail_form_enqueue_script() {
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' ) ); 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'); add_action('wp_enqueue_scripts', 'wp2pgpmail_form_enqueue_script');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment