Plugin Directory

Changeset 3049820


Ignore:
Timestamp:
03/12/2024 02:08:36 PM (2 years ago)
Author:
dedidata
Message:

Version 3.1.0

Location:
best-editor
Files:
276 added
5 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • best-editor/trunk/best-editor.php

    r3048624 r3049820  
    11<?php
    22/**
    3  * Plugin Name: Best Editor
     3 * Plugin Name: Advanced Classic Editor
    44 * Description: Coverts your classic WordPress editor to an advanced visual editor
    55 * Plugin URI: https://dedidata.com
    66 * Author: DediData
    77 * Author URI: https://dedidata.com
    8  * Version: 3.0.0
     8 * Version: 3.1.0
    99 * Requires at least: 6.0
    1010 * Tested up to: 6.4
  • best-editor/trunk/includes/BestEditor/class-best-editor.php

    r3048624 r3049820  
    199199        $font_awesome = get_option( $this->plugin_slug )['font-awesome'];
    200200        if ( true === $font_awesome /* or !isset( $font_awesome ) */ ) {
    201             wp_enqueue_style( 'font-awesome', $this->plugin_url . '/assets/font-awesome/css/font-awesome.min.css', null, '4.7.0' );
     201            wp_enqueue_style( 'font-awesome', $this->plugin_url . '/assets/fontawesome-6.5.1/css/all.min.css', null, '6.5.1' );
    202202            // wp_enqueue_script( $this->plugin_slug , $this->plugin_url . '/js/script.js', array(), $this->plugin_version, true );
    203203        }
    204204        $bootstrap = get_option( $this->plugin_slug )['bootstrap'];
    205205        $rtl       = is_rtl() ? '-rtl' : '';
    206         $rtl_ext   = is_rtl() ? '.rtl.full' : '';
     206        $rtl_ext   = is_rtl() ? '.rtl' : '';
    207207        if ( false === $bootstrap /* || ! isset( $bootstrap ) */ ) {
    208208            return;
    209209        }
    210         wp_enqueue_style( 'bootstrap' . $rtl, $this->plugin_url . '/assets/bootstrap' . $rtl . '/css/bootstrap' . $rtl_ext . '.min.css', null, '3.3.7' );
    211         wp_enqueue_script( 'bootstrap', $this->plugin_url . '/assets/bootstrap/js/bootstrap.min.js', array(), '3.3.7', true );
     210        wp_enqueue_style( 'bootstrap' . $rtl, $this->plugin_url . '/assets/bootstrap-5.3.3/css/bootstrap' . $rtl_ext . '.min.css', null, '5.3.3' );
     211        wp_enqueue_script( 'bootstrap', $this->plugin_url . '/assets/bootstrap-5.3.3/js/bootstrap.min.js', array(), '5.3.3', true );
    212212    }
    213213
     
    232232
    233233        // Load Font-Awesome
    234         wp_enqueue_style( 'font-awesome', $this->plugin_url . '/assets/font-awesome/css/font-awesome.min.css', null, '4.7.0' );
    235 
    236         $rtl_ext = is_rtl() ? '.rtl.full' : '';
    237         $rtl     = is_rtl() ? '-rtl' : '';
     234        wp_enqueue_style( 'font-awesome', $this->plugin_url . '/assets/fontawesome-6.5.1/css/all.min.css', null, '6.5.1' );
     235
     236        $rtl_ext = is_rtl() ? '.rtl' : '';
    238237        // Load editor styles for both rtl and ltr
    239238        add_editor_style(
     
    241240                'css/editor-style.css',
    242241                $this->plugin_url . '/assets/font-awesome/css/font-awesome.min.css',
    243                 $this->plugin_url . '/assets/bootstrap' . $rtl . '/css/bootstrap' . $rtl_ext . '.min.css',
     242                $this->plugin_url . '/assets/bootstrap-5.3.3/css/bootstrap' . $rtl_ext . '.min.css',
    244243            )
    245244        );
  • best-editor/trunk/readme.txt

    r3048624 r3049820  
    1 === Best Editor ===
     1=== Advanced Classic Editor ===
    22Contributors: dedidata, parsmizban, farhad0
    33Tags: wordpress editor, editor, fontawesome, bootstrap, wysiwyg, tinymce, bootstrap editor, font awesome, tinymce advanced, advanced editor, advanced tinymce, wordpress bootstrap, bootstrap wordpress, wp editor
     
    55Tested up to: 6.4
    66Requires PHP: 7.0
    7 Stable tag: 3.0.0
     7Stable tag: 3.1.0
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5151= Automatic installation (Install from within WordPress) =
    5252
    53 Automatic installation is the easiest option, WordPress will handles the file transfer, and you wont need to leave your web browser.
     53Automatic installation is the easiest option, WordPress will handles the file transfer, and you wont need to leave your web browser.
    5454
    55551. Log in to your WordPress dashboard
    56562. Navigate to the Plugins menu within your dashboard
    57 3. click �Add New.�
    58 4. In the search field type the name of this plugin and then click �Search Plugins.�
    59 5. Once youve found us,  you can view details about it such as the point release, rating, and description.
    60 6. Most importantly of course, you can install it by! Click �Install Now,� and WordPress will take it from there.
     573. click “Add New.”
     584. In the search field type the name of this plugin and then click “Search Plugins.”
     595. Once youve found us,  you can view details about it such as the point release, rating, and description.
     606. Most importantly of course, you can install it by! Click “Install Now,” and WordPress will take it from there.
    61617. Activate the plugin from your Plugins page
    6262
     
    67671. Download the plugin ZIP file and extract it
    68682. Upload the extracted folder to the /wp-content/plugins/ directory
    69 3. Activate the plugin through the �Plugins� menu in WordPress
     693. Activate the plugin through the ‘Plugins’ menu in WordPress
    7070
    7171== Upgrade Notice ==
     
    9393
    9494== Changelog ==
     95= 3.1.0 =
     96* Bootstrap and FontAwesome Update
     97
    9598= 3.0.0 =
    9699* Whole plugin rewritten
Note: See TracChangeset for help on using the changeset viewer.