Changeset 3487947
- Timestamp:
- 03/21/2026 08:11:54 PM (2 weeks ago)
- Location:
- owlstack/trunk
- Files:
-
- 6 edited
-
dist/owlstack-1.0.0.zip (modified) (previous)
-
owlstack.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
src/Admin/views/platform-settings-page.php (modified) (1 diff)
-
src/Admin/views/settings-page.php (modified) (1 diff)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
owlstack/trunk/owlstack.php
r3487934 r3487947 5 5 * Plugin URI: https://owlstack.dev 6 6 * Description: Publish content to Telegram, X (Twitter), Facebook, Instagram, LinkedIn, Discord, and more — directly from WordPress. 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Requires at least: 6.4 9 9 * Requires PHP: 8.1 … … 24 24 25 25 // Plugin constants. 26 define('OWLSTACK_VERSION', '1.0. 0');26 define('OWLSTACK_VERSION', '1.0.1'); 27 27 define('OWLSTACK_FILE', __FILE__); 28 28 define('OWLSTACK_DIR', plugin_dir_path(__FILE__)); -
owlstack/trunk/readme.txt
r3487934 r3487947 5 5 Requires at least: 6.4 6 6 Tested up to: 6.9 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 Requires PHP: 8.1 9 9 License: GPLv2 or later -
owlstack/trunk/src/Admin/views/platform-settings-page.php
r3487934 r3487947 22 22 </h1> 23 23 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 ?> 25 30 26 31 <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 14 14 <h1><?php echo esc_html(get_admin_page_title()); ?></h1> 15 15 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 ?> 17 22 18 23 <!-- Platform overview --> -
owlstack/trunk/vendor/composer/installed.php
r3487934 r3487947 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 16d9abbf3176f55185606e5de94cf8b1ed95966a',6 'reference' => 'c929934dac704ba1463d77f30c7d0efbaf8cf733', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 23 23 'pretty_version' => 'dev-main', 24 24 'version' => 'dev-main', 25 'reference' => ' 16d9abbf3176f55185606e5de94cf8b1ed95966a',25 'reference' => 'c929934dac704ba1463d77f30c7d0efbaf8cf733', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.