Changeset 2824396
- Timestamp:
- 11/25/2022 09:24:11 PM (3 years ago)
- Location:
- visual-user-description-editor
- Files:
-
- 6 added
- 4 edited
- 1 copied
-
tags/1.2.0 (copied) (copied from visual-user-description-editor/trunk)
-
tags/1.2.0/build (added)
-
tags/1.2.0/build/index.asset.php (added)
-
tags/1.2.0/build/index.js (added)
-
tags/1.2.0/readme.txt (modified) (3 diffs)
-
tags/1.2.0/visual-user-description-editor.php (modified) (3 diffs)
-
trunk/build (added)
-
trunk/build/index.asset.php (added)
-
trunk/build/index.js (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/visual-user-description-editor.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
visual-user-description-editor/tags/1.2.0/readme.txt
r2763882 r2824396 3 3 Tags: profile, biography, bio, rich, text, editor, wysiwyg, tinymce, wpeditor, visual, editor, biographic, info, description, profile biography, profile description, rich text, TinyMCE, user, user profile, users, author 4 4 Requires at least: 3.3 5 Tested up to: 6. 0.05 Tested up to: 6.1.0 6 6 Requires PHP: 5.3 7 Stable tag: 1. 1.17 Stable tag: 1.2.0 8 8 License: GPL v2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 38 38 2. Viewing a user archive page with the formatted description 39 39 40 == Changelog ==41 42 = 1.1.1 =43 * Update readme.txt44 45 = 1.1.0 =46 * Bumped the “Tested up to” tag to WP 6.047 48 = 1.0.0 =49 * Initial release50 51 40 == Frequently Asked Questions == 52 41 … … 63 52 } 64 53 ` 54 55 == Changelog == 56 57 = 1.2.0 = 58 * Bumped the “Tested up to” tag to WP 6.1 59 60 = 1.1.1 = 61 * Update readme.txt 62 63 = 1.1.0 = 64 * Bumped the “Tested up to” tag to WP 6.0 65 66 = 1.0.0 = 67 * Initial release -
visual-user-description-editor/tags/1.2.0/visual-user-description-editor.php
r2763882 r2824396 3 3 * Plugin Name: Visual User Description Editor 4 4 * Description: Replaces the user "Biographical Info" profile field with a TinyMCE visual editor. 5 * Version: 1. 1.15 * Version: 1.2.0 6 6 * Requires at least: 3.3 7 7 * Requires PHP: 5.3 … … 82 82 $use_visual_editor = current_user_can( 'edit_posts' ); 83 83 $use_visual_editor = apply_filters( 'vude_use_visual_editor', $use_visual_editor ); 84 $asset_file = include( plugin_dir_path( __FILE__ ) . 'build/index.asset.php' ); 84 85 85 86 if ( ! $use_visual_editor ) { … … 91 92 wp_enqueue_script( 92 93 'visual-user-description-editor', 93 plugins_url( 'js/enable-visual-editor.js', __FILE__ ) 94 plugins_url( 'build/index.js', __FILE__ ), 95 $asset_file['dependencies'], 96 $asset_file['version'] 94 97 ); 95 98 } -
visual-user-description-editor/trunk/readme.txt
r2763882 r2824396 3 3 Tags: profile, biography, bio, rich, text, editor, wysiwyg, tinymce, wpeditor, visual, editor, biographic, info, description, profile biography, profile description, rich text, TinyMCE, user, user profile, users, author 4 4 Requires at least: 3.3 5 Tested up to: 6. 0.05 Tested up to: 6.1.0 6 6 Requires PHP: 5.3 7 Stable tag: 1. 1.17 Stable tag: 1.2.0 8 8 License: GPL v2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 38 38 2. Viewing a user archive page with the formatted description 39 39 40 == Changelog ==41 42 = 1.1.1 =43 * Update readme.txt44 45 = 1.1.0 =46 * Bumped the “Tested up to” tag to WP 6.047 48 = 1.0.0 =49 * Initial release50 51 40 == Frequently Asked Questions == 52 41 … … 63 52 } 64 53 ` 54 55 == Changelog == 56 57 = 1.2.0 = 58 * Bumped the “Tested up to” tag to WP 6.1 59 60 = 1.1.1 = 61 * Update readme.txt 62 63 = 1.1.0 = 64 * Bumped the “Tested up to” tag to WP 6.0 65 66 = 1.0.0 = 67 * Initial release -
visual-user-description-editor/trunk/visual-user-description-editor.php
r2763882 r2824396 3 3 * Plugin Name: Visual User Description Editor 4 4 * Description: Replaces the user "Biographical Info" profile field with a TinyMCE visual editor. 5 * Version: 1. 1.15 * Version: 1.2.0 6 6 * Requires at least: 3.3 7 7 * Requires PHP: 5.3 … … 82 82 $use_visual_editor = current_user_can( 'edit_posts' ); 83 83 $use_visual_editor = apply_filters( 'vude_use_visual_editor', $use_visual_editor ); 84 $asset_file = include( plugin_dir_path( __FILE__ ) . 'build/index.asset.php' ); 84 85 85 86 if ( ! $use_visual_editor ) { … … 91 92 wp_enqueue_script( 92 93 'visual-user-description-editor', 93 plugins_url( 'js/enable-visual-editor.js', __FILE__ ) 94 plugins_url( 'build/index.js', __FILE__ ), 95 $asset_file['dependencies'], 96 $asset_file['version'] 94 97 ); 95 98 }
Note: See TracChangeset
for help on using the changeset viewer.