close

Plugin Directory

Changeset 3043635


Ignore:
Timestamp:
03/01/2024 12:30:28 PM (2 years ago)
Author:
podpirate
Message:

Release 3.3.2

Location:
acf-quickedit-fields
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • acf-quickedit-fields/tags/3.3.2/include/version.php

    r3042783 r3043635  
    1 <?php return "3.3.1";
     1<?php return "3.3.2";
  • acf-quickedit-fields/tags/3.3.2/index.php

    r3042783 r3043635  
    66Description: Show Advanced Custom Fields in post list table. Edit field values in Quick Edit and / or Bulk edit.
    77Author: Jörn Lund
    8 Version: 3.3.1
     8Version: 3.3.2
    99Author URI: https://github.com/mcguffin
    1010License: GPL3
     
    5151
    5252    // performance
    53     if ( ! wp_doing_ajax() || in_array( $_REQUEST['action'], [ 'inline-save', 'inline-save-tax', 'get_acf_post_meta' ] ) ) {
     53    if ( ! wp_doing_ajax() || in_array( $_REQUEST['action'], [ 'inline-save', 'inline-save-tax', 'get_acf_post_meta', 'pll_update_post_rows', 'pll_update_term_rows' ] ) ) {
    5454        Admin\Admin::instance();
    5555    }
  • acf-quickedit-fields/tags/3.3.2/languages/acf-quickedit-fields.pot

    r3042783 r3043635  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ACF QuickEdit Fields 3.3.1\n"
     5"Project-Id-Version: ACF QuickEdit Fields 3.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-quickedit-fields\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-02-28T20:28:31+00:00\n"
     12"POT-Creation-Date: 2024-03-01T12:30:01+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
  • acf-quickedit-fields/tags/3.3.2/readme.txt

    r3042783 r3043635  
    66Tested up to: 6.3
    77Requires PHP: 7.2
    8 Stable tag: 3.3.1
     8Stable tag: 3.3.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    105105
    106106== Changelog ==
     107
     108= 3.3.2 =
     109 - Fix: Columns were gone if polylang is active
     110
     111= 3.3.1 =
     112 - Fix: Search buttons disabled after quick edit
     113 - FIx: Sorting broken if used together with filters
     114 - Fix: Some PHP warnings
     115 - Fix: Column View in media list view was gone
     116 - Performance: Load admin class only if needed
    107117
    108118= 3.3.0 =
  • acf-quickedit-fields/trunk/include/version.php

    r3042783 r3043635  
    1 <?php return "3.3.1";
     1<?php return "3.3.2";
  • acf-quickedit-fields/trunk/index.php

    r3042783 r3043635  
    66Description: Show Advanced Custom Fields in post list table. Edit field values in Quick Edit and / or Bulk edit.
    77Author: Jörn Lund
    8 Version: 3.3.1
     8Version: 3.3.2
    99Author URI: https://github.com/mcguffin
    1010License: GPL3
     
    5151
    5252    // performance
    53     if ( ! wp_doing_ajax() || in_array( $_REQUEST['action'], [ 'inline-save', 'inline-save-tax', 'get_acf_post_meta' ] ) ) {
     53    if ( ! wp_doing_ajax() || in_array( $_REQUEST['action'], [ 'inline-save', 'inline-save-tax', 'get_acf_post_meta', 'pll_update_post_rows', 'pll_update_term_rows' ] ) ) {
    5454        Admin\Admin::instance();
    5555    }
  • acf-quickedit-fields/trunk/languages/acf-quickedit-fields.pot

    r3042783 r3043635  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: ACF QuickEdit Fields 3.3.1\n"
     5"Project-Id-Version: ACF QuickEdit Fields 3.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/acf-quickedit-fields\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-02-28T20:28:31+00:00\n"
     12"POT-Creation-Date: 2024-03-01T12:30:01+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.10.0\n"
  • acf-quickedit-fields/trunk/readme.txt

    r3042783 r3043635  
    66Tested up to: 6.3
    77Requires PHP: 7.2
    8 Stable tag: 3.3.1
     8Stable tag: 3.3.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    105105
    106106== Changelog ==
     107
     108= 3.3.2 =
     109 - Fix: Columns were gone if polylang is active
     110
     111= 3.3.1 =
     112 - Fix: Search buttons disabled after quick edit
     113 - FIx: Sorting broken if used together with filters
     114 - Fix: Some PHP warnings
     115 - Fix: Column View in media list view was gone
     116 - Performance: Load admin class only if needed
    107117
    108118= 3.3.0 =
Note: See TracChangeset for help on using the changeset viewer.