diff --git a/includes/wysiwyg-editor.php b/includes/wysiwyg-editor.php index 7f1db6e..bcf1ae2 100644 --- a/includes/wysiwyg-editor.php +++ b/includes/wysiwyg-editor.php @@ -4,15 +4,15 @@ * User: Stefan * Date: 24.05.14 * Time: 14:47 - * Version: 1.1.2 - * Since: 1.1.2 + * Version: 1.2.0 + * Since: 1.2.0 */ /** * adds a new button to the WYSIWYG editor for pages and posts * @param array $buttons * @return array - * @since 1.1.2 + * @since 1.2.0 */ function footnotes_wysiwyg_editor_functions($buttons) { array_push($buttons, FOOTNOTES_PLUGIN_NAME); @@ -23,7 +23,7 @@ function footnotes_wysiwyg_editor_functions($buttons) { * includes a javascript file to have a on-click function for the new button in the WYSIWYG editor * @param array $plugin_array * @return array - * @since 1.1.2 + * @since 1.2.0 */ function footnotes_wysiwyg_editor_buttons($plugin_array) { $plugin_array[FOOTNOTES_PLUGIN_NAME] = plugins_url('/../js/wysiwyg-editor.js', __FILE__); @@ -32,7 +32,7 @@ function footnotes_wysiwyg_editor_buttons($plugin_array) { /** * adds a new button to the plain text editor for pages and posts - * @since 1.1.2 + * @since 1.2.0 */ function footnotes_text_editor_buttons() { ?> @@ -55,7 +55,7 @@ function footnotes_text_editor_buttons() { /** * adds a new button to the plain text editor */ - QTags.addButton( 'footnotes_quicktag_button', 'Footnotes', footnotes_text_editor_callback ); + QTags.addButton( 'footnotes_quicktag_button', 'footnotes', footnotes_text_editor_callback ); /** * callback function when the button is clicked * executes a ajax call to get the start and end tag for the footnotes and diff --git a/index.php b/index.php index 5d4de93..f33de1a 100755 --- a/index.php +++ b/index.php @@ -4,7 +4,7 @@ Plugin URI: http://wordpress.org/plugins/footnotes/ Description: time to bring footnotes to your website! footnotes are known from offline publishing and everybody takes them for granted when reading a magazine. Author: media competence institute - Version: 1.1.2 + Version: 1.2.0 Author URI: http://cheret.co.uk/mci Text Domain: footnotes Domain Path: /languages diff --git a/js/wysiwyg-editor.js b/js/wysiwyg-editor.js index 040cddd..ac026e6 100644 --- a/js/wysiwyg-editor.js +++ b/js/wysiwyg-editor.js @@ -66,7 +66,7 @@ author : 'media competence institute', authorurl : 'http://cheret.co.uk/mci', infourl : 'http://wordpress.org/plugins/footnotes/', - version : "1.1.2" + version : "1.2.0" }; } });