Plugin Directory

Changeset 3452880


Ignore:
Timestamp:
02/03/2026 01:00:02 PM (8 weeks ago)
Author:
pluginever
Message:

Update to version 1.3.4

Location:
wc-key-manager
Files:
2 added
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wc-key-manager/tags/1.3.4/includes/Admin/Notices.php

    r3434313 r3452880  
    3030        $current_time   = absint( wp_date( 'U' ) );
    3131
     32        // Special offer notice.
     33        $special_offer_end_time = strtotime( '2026-02-28 00:00:00' );
     34        if ( ! defined( 'WCKM_PRO_VERSION' ) && $current_time < $special_offer_end_time ) {
     35            WCKM()->notices->add(
     36                array(
     37                    'message'     => __DIR__ . '/views/notices/special-offer.php',
     38                    'dismissible' => false,
     39                    'notice_id'   => 'wckm_feb_special_2026',
     40                    'style'       => 'border-left-color: #0542fa;',
     41                    'class'       => 'notice-special-offer',
     42                )
     43            );
     44        }
     45
    3246        if ( ! defined( 'WCKM_PRO_VERSION' ) ) {
    3347            WCKM()->notices->add(
  • wc-key-manager/tags/1.3.4/languages/wc-key-manager.pot

    r3434313 r3452880  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Key Manager 1.3.3\n"
     5"Project-Id-Version: Key Manager 1.3.4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-key-manager\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: 2026-01-07T11:54:59+00:00\n"
     12"POT-Creation-Date: 2026-02-03T11:31:28+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    14511451
    14521452#: includes/Admin/views/notices/review.php:42
     1453#: includes/Admin/views/notices/special-offer.php:40
    14531454#: includes/Admin/views/notices/upgrade.php:40
    14541455msgid "Maybe later"
     
    14571458#: includes/Admin/views/notices/review.php:46
    14581459msgid "I've already left a review"
     1460msgstr ""
     1461
     1462#: includes/Admin/views/notices/special-offer.php:18
     1463msgid "Special Offer!"
     1464msgstr ""
     1465
     1466#. translators: %1$s: Key Manager Pro link, %2$s: Coupon code.
     1467#: includes/Admin/views/notices/special-offer.php:24
     1468#, php-format
     1469msgid "🎉 Save <strong>20%% discount</strong> on %1$s! Upgrade now for enhanced license management, advanced controls, and priority support. Use code: %2$s at checkout to grab the deal."
     1470msgstr ""
     1471
     1472#: includes/Admin/views/notices/special-offer.php:36
     1473msgid "Grab the Deal"
     1474msgstr ""
     1475
     1476#: includes/Admin/views/notices/special-offer.php:44
     1477msgid "Close permanently"
    14591478msgstr ""
    14601479
  • wc-key-manager/tags/1.3.4/readme.txt

    r3434313 r3452880  
    33Tags: key, license, key manager, software license, gift cards
    44Tested up to: 6.9
    5 Stable tag: 1.3.3
     5Stable tag: 1.3.4
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    165165
    166166== Changelog ==
     167= 1.3.4 (2026-02-03) =
     168* Fix: Few known issues are fixed.
     169
    167170= 1.3.3 (2026-01-07) =
    168171* Fix: Resolved several minor bugs to improve overall stability and reliability.
  • wc-key-manager/tags/1.3.4/vendor/composer/installed.php

    r3434313 r3452880  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '1e8260e713a59f43d09591f181c1396fbd0b5563',
     6        'reference' => 'cf51b8e744299cc168e69b090dbf862450393524',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4141            'pretty_version' => 'dev-master',
    4242            'version' => 'dev-master',
    43             'reference' => '1e8260e713a59f43d09591f181c1396fbd0b5563',
     43            'reference' => 'cf51b8e744299cc168e69b090dbf862450393524',
    4444            'type' => 'wordpress-plugin',
    4545            'install_path' => __DIR__ . '/../../',
  • wc-key-manager/tags/1.3.4/wc-key-manager.php

    r3434313 r3452880  
    44 * Plugin URI:           https://wckeymanager.com/
    55 * Description:          Key Manager is a WooCommerce plugin for selling and managing license keys, game keys, pin codes, gift cards, serial numbers, and other items.
    6  * Version:              1.3.3
     6 * Version:              1.3.4
    77 * Requires at least:    5.2
    88 * Tested up to:         6.9
  • wc-key-manager/trunk/includes/Admin/Notices.php

    r3434313 r3452880  
    3030        $current_time   = absint( wp_date( 'U' ) );
    3131
     32        // Special offer notice.
     33        $special_offer_end_time = strtotime( '2026-02-28 00:00:00' );
     34        if ( ! defined( 'WCKM_PRO_VERSION' ) && $current_time < $special_offer_end_time ) {
     35            WCKM()->notices->add(
     36                array(
     37                    'message'     => __DIR__ . '/views/notices/special-offer.php',
     38                    'dismissible' => false,
     39                    'notice_id'   => 'wckm_feb_special_2026',
     40                    'style'       => 'border-left-color: #0542fa;',
     41                    'class'       => 'notice-special-offer',
     42                )
     43            );
     44        }
     45
    3246        if ( ! defined( 'WCKM_PRO_VERSION' ) ) {
    3347            WCKM()->notices->add(
  • wc-key-manager/trunk/languages/wc-key-manager.pot

    r3434313 r3452880  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Key Manager 1.3.3\n"
     5"Project-Id-Version: Key Manager 1.3.4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-key-manager\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: 2026-01-07T11:54:59+00:00\n"
     12"POT-Creation-Date: 2026-02-03T11:31:28+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
     
    14511451
    14521452#: includes/Admin/views/notices/review.php:42
     1453#: includes/Admin/views/notices/special-offer.php:40
    14531454#: includes/Admin/views/notices/upgrade.php:40
    14541455msgid "Maybe later"
     
    14571458#: includes/Admin/views/notices/review.php:46
    14581459msgid "I've already left a review"
     1460msgstr ""
     1461
     1462#: includes/Admin/views/notices/special-offer.php:18
     1463msgid "Special Offer!"
     1464msgstr ""
     1465
     1466#. translators: %1$s: Key Manager Pro link, %2$s: Coupon code.
     1467#: includes/Admin/views/notices/special-offer.php:24
     1468#, php-format
     1469msgid "🎉 Save <strong>20%% discount</strong> on %1$s! Upgrade now for enhanced license management, advanced controls, and priority support. Use code: %2$s at checkout to grab the deal."
     1470msgstr ""
     1471
     1472#: includes/Admin/views/notices/special-offer.php:36
     1473msgid "Grab the Deal"
     1474msgstr ""
     1475
     1476#: includes/Admin/views/notices/special-offer.php:44
     1477msgid "Close permanently"
    14591478msgstr ""
    14601479
  • wc-key-manager/trunk/readme.txt

    r3434313 r3452880  
    33Tags: key, license, key manager, software license, gift cards
    44Tested up to: 6.9
    5 Stable tag: 1.3.3
     5Stable tag: 1.3.4
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    165165
    166166== Changelog ==
     167= 1.3.4 (2026-02-03) =
     168* Fix: Few known issues are fixed.
     169
    167170= 1.3.3 (2026-01-07) =
    168171* Fix: Resolved several minor bugs to improve overall stability and reliability.
  • wc-key-manager/trunk/vendor/composer/installed.php

    r3434313 r3452880  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '1e8260e713a59f43d09591f181c1396fbd0b5563',
     6        'reference' => 'cf51b8e744299cc168e69b090dbf862450393524',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    4141            'pretty_version' => 'dev-master',
    4242            'version' => 'dev-master',
    43             'reference' => '1e8260e713a59f43d09591f181c1396fbd0b5563',
     43            'reference' => 'cf51b8e744299cc168e69b090dbf862450393524',
    4444            'type' => 'wordpress-plugin',
    4545            'install_path' => __DIR__ . '/../../',
  • wc-key-manager/trunk/wc-key-manager.php

    r3434313 r3452880  
    44 * Plugin URI:           https://wckeymanager.com/
    55 * Description:          Key Manager is a WooCommerce plugin for selling and managing license keys, game keys, pin codes, gift cards, serial numbers, and other items.
    6  * Version:              1.3.3
     6 * Version:              1.3.4
    77 * Requires at least:    5.2
    88 * Tested up to:         6.9
Note: See TracChangeset for help on using the changeset viewer.