Plugin Directory

Changeset 3337655


Ignore:
Timestamp:
08/01/2025 08:12:36 AM (7 months ago)
Author:
capuderg
Message:

Sugar Calendar Lite v3.8.1

Location:
sugar-calendar-lite
Files:
1314 added
5 edited

Legend:

Unmodified
Added
Removed
  • sugar-calendar-lite/trunk/assets/languages/sugar-calendar-lite.pot

    r3335978 r3337655  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Sugar Calendar (Lite) 3.8.0\n"
     3"Project-Id-Version: Sugar Calendar (Lite) 3.8.1\n"
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sugar-calendar-lite\n"
    55"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    88"Content-Type: text/plain; charset=UTF-8\n"
    99"Content-Transfer-Encoding: 8bit\n"
    10 "POT-Creation-Date: 2025-07-29T11:37:38+00:00\n"
     10"POT-Creation-Date: 2025-08-01T07:44:33+00:00\n"
    1111"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1212"X-Generator: WP-CLI 2.7.1\n"
     
    1515#. Plugin Name of the plugin
    1616#. Author of the plugin
    17 #: src/Admin/Area.php:299
    1817#: src/Admin/Area.php:300
     18#: src/Admin/Area.php:301
    1919#: src/Admin/Tools/DashboardWidget.php:120
    2020#: src/Block/Calendar/Loader.php:431
     
    30803080msgstr ""
    30813081
    3082 #: src/Admin/Area.php:89
     3082#: src/Admin/Area.php:90
    30833083msgid "Invalid request!"
    30843084msgstr ""
    30853085
    3086 #: src/Admin/Area.php:93
     3086#: src/Admin/Area.php:94
    30873087msgid "Status is required"
    30883088msgstr ""
    30893089
    3090 #: src/Admin/Area.php:99
     3090#: src/Admin/Area.php:100
    30913091msgid "Status invalid!"
    30923092msgstr ""
    30933093
    3094 #: src/Admin/Area.php:438
    30953094#: src/Admin/Area.php:439
     3095#: src/Admin/Area.php:440
    30963096msgid "Upgrade to Pro"
    30973097msgstr ""
    30983098
    3099 #: src/Admin/Area.php:962
     3099#: src/Admin/Area.php:963
    31003100msgid "Security check failed. Please try again."
    31013101msgstr ""
    31023102
    3103 #: src/Admin/Area.php:979
     3103#: src/Admin/Area.php:980
    31043104msgid "Missing required data. Please try again."
    31053105msgstr ""
    31063106
    3107 #: src/Admin/Area.php:997
     3107#: src/Admin/Area.php:998
    31083108msgid "Failed to save column preferences. Please try again."
    31093109msgstr ""
  • sugar-calendar-lite/trunk/readme.txt

    r3335978 r3337655  
    1010Requires at least: 5.9
    1111Tested up to:      6.8
    12 Stable tag:        3.8.0
     12Stable tag:        3.8.1
    1313
    1414Easily manage events and sell tickets on your WordPress site. Sugar Calendar is easy-to-use, reliable, and exceptionally powerful. See for yourself.
     
    257257
    258258== Changelog ==
     259= 3.8.1 - 2025-08-01 =
     260- Fixed: Fatal error in other plugins for incorrect use of a WP filter.
     261
    259262= 3.8.0 - 2025-07-29 =
    260263- Added: Screen Options in various admin pages for better management.
  • sugar-calendar-lite/trunk/src/Admin/Area.php

    r3335978 r3337655  
    3333use Sugar_Calendar\Plugin;
    3434use WP_Exception;
     35use WP_Screen;
    3536
    3637use function Sugar_Calendar\Admin\Settings\get_sections;
     
    11331134     * @since 3.0.0
    11341135     * @since 3.3.0 Add wp-date script as a dependency for admin-event-meta-box script.
     1136     * @since 3.8.1 Change the usage of apply filters to check if screen options is shown.
    11351137     *
    11361138     * @param string $hook The current admin page.
     
    12791281        );
    12801282
     1283        $wp_screen = get_current_screen();
     1284
    12811285        // Only enqueue if Screen Options is displayed.
    1282         // phpcs:ignore WPForms.Comments.PHPDocHooks.RequiredHookDocumentation, WPForms.PHP.ValidateHooks.InvalidHookName
    1283         if ( apply_filters( 'screen_options_show_screen', false ) ) {
     1286        if ( $wp_screen instanceof WP_Screen && $wp_screen->show_screen_options() ) {
    12841287            wp_enqueue_script( 'sugar-calendar-admin-screen-options' );
    12851288        }
  • sugar-calendar-lite/trunk/sugar-calendar-lite.php

    r3335978 r3337655  
    1212 * Requires PHP:      7.4
    1313 * Requires at least: 5.9
    14  * Version:           3.8.0
     14 * Version:           3.8.1
    1515 */
    1616
     
    2626     * @since 3.0.0
    2727     */
    28     define( 'SC_PLUGIN_VERSION', '3.8.0' );
     28    define( 'SC_PLUGIN_VERSION', '3.8.1' );
    2929}
    3030
  • sugar-calendar-lite/trunk/vendor/composer/installed.php

    r3335978 r3337655  
    44        'pretty_version' => 'dev-develop',
    55        'version' => 'dev-develop',
    6         'reference' => '0b6a73aad8159641161fcf7f6f7b4d6965af5b4a',
     6        'reference' => 'f78cbd13a10c027b7d318cc8a30cd6a458931b1d',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-develop',
    1515            'version' => 'dev-develop',
    16             'reference' => '0b6a73aad8159641161fcf7f6f7b4d6965af5b4a',
     16            'reference' => 'f78cbd13a10c027b7d318cc8a30cd6a458931b1d',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.