Plugin Directory

Changeset 2597683


Ignore:
Timestamp:
09/12/2021 10:51:45 PM (5 years ago)
Author:
jnorell
Message:

bugfixes and 5.8.1 compatibility

Location:
comment-tweaks/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • comment-tweaks/trunk/admin/css/comment-tweaks-admin.css

    r2037272 r2597683  
    1313  float: left;
    1414}
     15#comment_tweaks_anchor {
     16  scroll-margin-top: 48px;
     17}
    1518
  • comment-tweaks/trunk/comment-tweaks.php

    r2094791 r2597683  
    1717 * Plugin URI:        https://github.com/jnorell/comment-tweaks/
    1818 * Description:       Enhance Wordpress native comments (enables WP editor)
    19  * Version:           1.1.3
     19 * Version:           1.1.4
    2020 * Author:            Jesse Norell
    2121 * Author URI:        https://github.com/jnorell/
     
    3434 * Currently plugin version.
    3535 */
    36 define( 'COMMENT_TWEAKS_VERSION', '1.1.3' );
     36define( 'COMMENT_TWEAKS_VERSION', '1.1.4' );
    3737
    3838/**
  • comment-tweaks/trunk/includes/class-comment-tweaks.php

    r2094791 r2597683  
    191191
    192192        // Currently not needed, so disabled for efficiency
    193         // $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
     193        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );
    194194        $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' );
    195195
     
    334334     */
    335335    public static function add_option( $name, $value ) {
    336         return Comment_Tweaks::update_options( $name, $value );
     336        return Comment_Tweaks::update_option( $name, $value );
    337337    }
    338338
  • comment-tweaks/trunk/public/css/comment-tweaks-public.css

    r2023100 r2597683  
    33 * included in this file.
    44 */
     5
     6/* Fix dark button background for twentytwentyone theme */
     7.mce-container .mce-widget.mce-btn button:not(:hover):not(:active):not(.has-background) {
     8    border-color: transparent;
     9    background: 0 0;
     10    background-image: initial;
     11    background-position-x: 0px;
     12    background-position-y: 0px;
     13    background-size: initial;
     14    background-repeat-x: initial;
     15    background-repeat-y: initial;
     16    background-attachment: initial;
     17    background-origin: initial;
     18    background-clip: initial;
     19    background-color: initial;
     20}
  • comment-tweaks/trunk/readme.txt

    r2156214 r2597683  
    33Tags: comments, editor
    44Requires at least: 4.8
    5 Tested up to: 5.2.3
     5Tested up to: 5.8.1
    66Stable tag: trunk
    77Requires PHP: 5.4
     
    124124== Changelog ==
    125125
     126= 1.1.4 =
     127
     128Release Date:  Sep 12, 2021
     129
     130* Fix: Typo 'update_option' function name.
     131* Fix: Editor buttons have dark background in twentytwentyone theme.
     132* Fix: Settings link top margin in chrome.
     133
    126134= 1.1.3 =
    127135
     
    136144Release Date:  May 17, 2019
    137145
    138 * Incompatibility:  cannot add WP editor to comments on WP 5.1+ with threaded comments enabled.
     146* Incompatibility: cannot add WP editor to comments on WP 5.1+ with threaded comments enabled.
    139147
    140148= 1.1.1 =
     
    149157Release Date:  February 14, 2019
    150158
    151 * Feature:  Allow comment authors (logged in users) to edit their own comments (post author can not).
     159* Feature: Allow comment authors (logged in users) to edit their own comments (post author can not).
    152160* Improvement: Add functions to manage plugin options.
    153161* Improvement: Add admin setting for whether to add wp_editor to comments.
Note: See TracChangeset for help on using the changeset viewer.