Plugin Directory

Changeset 2824396


Ignore:
Timestamp:
11/25/2022 09:24:11 PM (3 years ago)
Author:
zwwuu
Message:

1.2.0

Location:
visual-user-description-editor
Files:
6 added
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • visual-user-description-editor/tags/1.2.0/readme.txt

    r2763882 r2824396  
    33Tags: 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
    44Requires at least: 3.3
    5 Tested up to: 6.0.0
     5Tested up to: 6.1.0
    66Requires PHP: 5.3
    7 Stable tag: 1.1.1
     7Stable tag: 1.2.0
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    38382. Viewing a user archive page with the formatted description
    3939
    40 == Changelog ==
    41 
    42 = 1.1.1 =
    43 * Update readme.txt
    44 
    45 = 1.1.0 =
    46 * Bumped the “Tested up to” tag to WP 6.0
    47 
    48 = 1.0.0 =
    49 * Initial release
    50 
    5140== Frequently Asked Questions ==
    5241
     
    6352}
    6453`
     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  
    33 * Plugin Name:       Visual User Description Editor
    44 * Description:       Replaces the user "Biographical Info" profile field with a TinyMCE visual editor.
    5  * Version:           1.1.1
     5 * Version:           1.2.0
    66 * Requires at least: 3.3
    77 * Requires PHP:      5.3
     
    8282            $use_visual_editor = current_user_can( 'edit_posts' );
    8383            $use_visual_editor = apply_filters( 'vude_use_visual_editor', $use_visual_editor );
     84            $asset_file        = include( plugin_dir_path( __FILE__ ) . 'build/index.asset.php' );
    8485
    8586            if ( ! $use_visual_editor ) {
     
    9192            wp_enqueue_script(
    9293                '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']
    9497            );
    9598        }
  • visual-user-description-editor/trunk/readme.txt

    r2763882 r2824396  
    33Tags: 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
    44Requires at least: 3.3
    5 Tested up to: 6.0.0
     5Tested up to: 6.1.0
    66Requires PHP: 5.3
    7 Stable tag: 1.1.1
     7Stable tag: 1.2.0
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    38382. Viewing a user archive page with the formatted description
    3939
    40 == Changelog ==
    41 
    42 = 1.1.1 =
    43 * Update readme.txt
    44 
    45 = 1.1.0 =
    46 * Bumped the “Tested up to” tag to WP 6.0
    47 
    48 = 1.0.0 =
    49 * Initial release
    50 
    5140== Frequently Asked Questions ==
    5241
     
    6352}
    6453`
     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  
    33 * Plugin Name:       Visual User Description Editor
    44 * Description:       Replaces the user "Biographical Info" profile field with a TinyMCE visual editor.
    5  * Version:           1.1.1
     5 * Version:           1.2.0
    66 * Requires at least: 3.3
    77 * Requires PHP:      5.3
     
    8282            $use_visual_editor = current_user_can( 'edit_posts' );
    8383            $use_visual_editor = apply_filters( 'vude_use_visual_editor', $use_visual_editor );
     84            $asset_file        = include( plugin_dir_path( __FILE__ ) . 'build/index.asset.php' );
    8485
    8586            if ( ! $use_visual_editor ) {
     
    9192            wp_enqueue_script(
    9293                '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']
    9497            );
    9598        }
Note: See TracChangeset for help on using the changeset viewer.