Plugin Directory

Changeset 3132378


Ignore:
Timestamp:
08/08/2024 12:02:28 AM (20 months ago)
Author:
heynota
Message:

Update to version 0.11.1 from GitHub

Location:
nota-ai-tools
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • nota-ai-tools/tags/0.11.1/includes/class-nota-api.php

    r3131844 r3132378  
    6565            )
    6666        );
    67         // Check for timeout setting, default to 30 seconds if not set.
    68         $request_args['timeout'] = (int) $this->settings->get_option( 'request_timeout_seconds', 30 );
     67        // Check for timeout setting, default to 30 seconds if not set or empty.
     68        $timeout                 = (int) $this->settings->get_option( 'request_timeout_seconds' );
     69        $timeout                 = empty( $timeout ) ? 30 : $timeout;
     70        $request_args['timeout'] = $timeout;
    6971
    7072        $url = $this->get_api_url();
  • nota-ai-tools/tags/0.11.1/nota-wordpress-plugin.php

    r3131844 r3132378  
    33 * Plugin Name: Nota Tools
    44 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more.
    5  * Version: 0.11.0
     5 * Version: 0.11.1
    66 * Author: Nota
    77 * Author URI: https://heynota.com
     
    1414defined( 'ABSPATH' ) || exit;
    1515
    16 define( 'NOTA_PLUGIN_VERSION', '0.11.0' );
     16define( 'NOTA_PLUGIN_VERSION', '0.11.1' );
    1717
    1818if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) {
  • nota-ai-tools/tags/0.11.1/readme.txt

    r3131844 r3132378  
    44License URI: http://www.gnu.org/licenses/gpl.html
    55Requires PHP: 7.2.5
    6 Stable tag: 0.11.0
     6Stable tag: 0.11.1
    77Tested up to: 6.5.3
    88
  • nota-ai-tools/trunk/includes/class-nota-api.php

    r3131844 r3132378  
    6565            )
    6666        );
    67         // Check for timeout setting, default to 30 seconds if not set.
    68         $request_args['timeout'] = (int) $this->settings->get_option( 'request_timeout_seconds', 30 );
     67        // Check for timeout setting, default to 30 seconds if not set or empty.
     68        $timeout                 = (int) $this->settings->get_option( 'request_timeout_seconds' );
     69        $timeout                 = empty( $timeout ) ? 30 : $timeout;
     70        $request_args['timeout'] = $timeout;
    6971
    7072        $url = $this->get_api_url();
  • nota-ai-tools/trunk/nota-wordpress-plugin.php

    r3131844 r3132378  
    33 * Plugin Name: Nota Tools
    44 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more.
    5  * Version: 0.11.0
     5 * Version: 0.11.1
    66 * Author: Nota
    77 * Author URI: https://heynota.com
     
    1414defined( 'ABSPATH' ) || exit;
    1515
    16 define( 'NOTA_PLUGIN_VERSION', '0.11.0' );
     16define( 'NOTA_PLUGIN_VERSION', '0.11.1' );
    1717
    1818if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) {
  • nota-ai-tools/trunk/readme.txt

    r3131844 r3132378  
    44License URI: http://www.gnu.org/licenses/gpl.html
    55Requires PHP: 7.2.5
    6 Stable tag: 0.11.0
     6Stable tag: 0.11.1
    77Tested up to: 6.5.3
    88
Note: See TracChangeset for help on using the changeset viewer.