Plugin Directory

Changeset 3487947


Ignore:
Timestamp:
03/21/2026 08:11:54 PM (2 weeks ago)
Author:
alihesari
Message:

Release 1.0.1

Location:
owlstack/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • owlstack/trunk/owlstack.php

    r3487934 r3487947  
    55 * Plugin URI:        https://owlstack.dev
    66 * Description:       Publish content to Telegram, X (Twitter), Facebook, Instagram, LinkedIn, Discord, and more — directly from WordPress.
    7  * Version:           1.0.0
     7 * Version:           1.0.1
    88 * Requires at least: 6.4
    99 * Requires PHP:      8.1
     
    2424
    2525// Plugin constants.
    26 define('OWLSTACK_VERSION', '1.0.0');
     26define('OWLSTACK_VERSION', '1.0.1');
    2727define('OWLSTACK_FILE', __FILE__);
    2828define('OWLSTACK_DIR', plugin_dir_path(__FILE__));
  • owlstack/trunk/readme.txt

    r3487934 r3487947  
    55Requires at least: 6.4
    66Tested up to: 6.9
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88Requires PHP: 8.1
    99License: GPLv2 or later
  • owlstack/trunk/src/Admin/views/platform-settings-page.php

    r3487934 r3487947  
    2222    </h1>
    2323
    24     <?php settings_errors('owlstack_settings'); ?>
     24    <?php
     25    if (isset($_GET['settings-updated']) && $_GET['settings-updated']) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
     26        add_settings_error('owlstack_settings', 'owlstack_updated', __('Settings saved.', 'owlstack'), 'updated');
     27    }
     28    settings_errors('owlstack_settings');
     29    ?>
    2530
    2631    <div class="owlstack-platform-docs-notice" style="background: #f0f6fc; border-left: 4px solid #2271b1; padding: 12px 16px; margin: 16px 0;">
  • owlstack/trunk/src/Admin/views/settings-page.php

    r3487934 r3487947  
    1414    <h1><?php echo esc_html(get_admin_page_title()); ?></h1>
    1515
    16     <?php settings_errors('owlstack_settings'); ?>
     16    <?php
     17    if (isset($_GET['settings-updated']) && $_GET['settings-updated']) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
     18        add_settings_error('owlstack_settings', 'owlstack_updated', __('Settings saved.', 'owlstack'), 'updated');
     19    }
     20    settings_errors('owlstack_settings');
     21    ?>
    1722
    1823    <!-- Platform overview -->
  • owlstack/trunk/vendor/composer/installed.php

    r3487934 r3487947  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '16d9abbf3176f55185606e5de94cf8b1ed95966a',
     6        'reference' => 'c929934dac704ba1463d77f30c7d0efbaf8cf733',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-main',
    2424            'version' => 'dev-main',
    25             'reference' => '16d9abbf3176f55185606e5de94cf8b1ed95966a',
     25            'reference' => 'c929934dac704ba1463d77f30c7d0efbaf8cf733',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.