Plugin Directory

Changeset 3483888


Ignore:
Timestamp:
03/16/2026 01:14:53 PM (2 weeks ago)
Author:
bookiflex
Message:

release: v1.0.2

Location:
bookiflex
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • bookiflex/tags/1.0.2/assets/manifest.json

    r3483810 r3483888  
    11{
    2   "version": "1.0.1",
    3   "generated": "2026-03-16T11:45:44.671Z",
     2  "version": "1.0.2",
     3  "generated": "2026-03-16T13:12:07.963Z",
    44  "external": {
    55    "vue": "assets/vendor/vue/vue.global.prod.js",
  • bookiflex/tags/1.0.2/bookiflex.php

    r3483810 r3483888  
    66 * Description: Direct Booking Widget for Apartments and Short-Term Rentals
    77 * Plugin URI: https://bookiflex.com
    8  * Version: 1.0.1
     8 * Version: 1.0.2
    99 * Author: BookiFlex
    1010 * License: GPL-2.0-or-later
     
    8080}
    8181// Define plugin constants
    82 define( 'BOOKIFLEX_VERSION', '1.0.1' );
     82define( 'BOOKIFLEX_VERSION', '1.0.2' );
    8383define( 'BOOKIFLEX_FILE', __FILE__ );
    8484define( 'BOOKIFLEX_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • bookiflex/tags/1.0.2/readme.txt

    r3483810 r3483888  
    55Tested up to: 6.9
    66Requires PHP: 8.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • bookiflex/tags/1.0.2/src/Extensions/Onboarding/Admin/Menu/OnboardingMenu.php

    r3483810 r3483888  
    8787        }
    8888
     89        // If onboarding already completed, just clean up the stale flag
     90        if ($this->stateManager->isCompleted()) {
     91            $this->stateManager->clearRedirectFlag();
     92            return;
     93        }
     94
    8995        // Don't redirect on bulk activation
    9096        if (Request::has('activate-multi')) {
     
    96102            return;
    97103        }
    98 
    99         $this->stateManager->clearRedirectFlag();
    100104
    101105        wp_safe_redirect(admin_url('admin.php?page=bookiflex-onboarding'));
  • bookiflex/tags/1.0.2/src/Extensions/Onboarding/Service/OnboardingStateManager.php

    r3478607 r3483888  
    8181            ]
    8282        );
     83        $this->clearRedirectFlag();
    8384    }
    8485
  • bookiflex/tags/1.0.2/vendor/composer/installed.php

    r3483810 r3483888  
    22    'root' => array(
    33        'name' => 'bookiflex/plugin',
    4         'pretty_version' => 'v1.0.1',
    5         'version' => '1.0.1.0',
    6         'reference' => '8fd45da5230c498bc76250db27402d8c1eb4f6b0',
     4        'pretty_version' => 'v1.0.2',
     5        'version' => '1.0.2.0',
     6        'reference' => '84117adc6357015d083084d99706a811d332c75f',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'bookiflex/plugin' => array(
    23             'pretty_version' => 'v1.0.1',
    24             'version' => '1.0.1.0',
    25             'reference' => '8fd45da5230c498bc76250db27402d8c1eb4f6b0',
     23            'pretty_version' => 'v1.0.2',
     24            'version' => '1.0.2.0',
     25            'reference' => '84117adc6357015d083084d99706a811d332c75f',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
  • bookiflex/trunk/assets/manifest.json

    r3483810 r3483888  
    11{
    2   "version": "1.0.1",
    3   "generated": "2026-03-16T11:45:44.671Z",
     2  "version": "1.0.2",
     3  "generated": "2026-03-16T13:12:07.963Z",
    44  "external": {
    55    "vue": "assets/vendor/vue/vue.global.prod.js",
  • bookiflex/trunk/bookiflex.php

    r3483810 r3483888  
    66 * Description: Direct Booking Widget for Apartments and Short-Term Rentals
    77 * Plugin URI: https://bookiflex.com
    8  * Version: 1.0.1
     8 * Version: 1.0.2
    99 * Author: BookiFlex
    1010 * License: GPL-2.0-or-later
     
    8080}
    8181// Define plugin constants
    82 define( 'BOOKIFLEX_VERSION', '1.0.1' );
     82define( 'BOOKIFLEX_VERSION', '1.0.2' );
    8383define( 'BOOKIFLEX_FILE', __FILE__ );
    8484define( 'BOOKIFLEX_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • bookiflex/trunk/readme.txt

    r3483810 r3483888  
    55Tested up to: 6.9
    66Requires PHP: 8.1
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • bookiflex/trunk/src/Extensions/Onboarding/Admin/Menu/OnboardingMenu.php

    r3483810 r3483888  
    8787        }
    8888
     89        // If onboarding already completed, just clean up the stale flag
     90        if ($this->stateManager->isCompleted()) {
     91            $this->stateManager->clearRedirectFlag();
     92            return;
     93        }
     94
    8995        // Don't redirect on bulk activation
    9096        if (Request::has('activate-multi')) {
     
    96102            return;
    97103        }
    98 
    99         $this->stateManager->clearRedirectFlag();
    100104
    101105        wp_safe_redirect(admin_url('admin.php?page=bookiflex-onboarding'));
  • bookiflex/trunk/src/Extensions/Onboarding/Service/OnboardingStateManager.php

    r3478607 r3483888  
    8181            ]
    8282        );
     83        $this->clearRedirectFlag();
    8384    }
    8485
  • bookiflex/trunk/vendor/composer/installed.php

    r3483810 r3483888  
    22    'root' => array(
    33        'name' => 'bookiflex/plugin',
    4         'pretty_version' => 'v1.0.1',
    5         'version' => '1.0.1.0',
    6         'reference' => '8fd45da5230c498bc76250db27402d8c1eb4f6b0',
     4        'pretty_version' => 'v1.0.2',
     5        'version' => '1.0.2.0',
     6        'reference' => '84117adc6357015d083084d99706a811d332c75f',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2121        ),
    2222        'bookiflex/plugin' => array(
    23             'pretty_version' => 'v1.0.1',
    24             'version' => '1.0.1.0',
    25             'reference' => '8fd45da5230c498bc76250db27402d8c1eb4f6b0',
     23            'pretty_version' => 'v1.0.2',
     24            'version' => '1.0.2.0',
     25            'reference' => '84117adc6357015d083084d99706a811d332c75f',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.