Changeset 3132378
- Timestamp:
- 08/08/2024 12:02:28 AM (20 months ago)
- Location:
- nota-ai-tools
- Files:
-
- 6 edited
- 1 copied
-
tags/0.11.1 (copied) (copied from nota-ai-tools/trunk)
-
tags/0.11.1/includes/class-nota-api.php (modified) (1 diff)
-
tags/0.11.1/nota-wordpress-plugin.php (modified) (2 diffs)
-
tags/0.11.1/readme.txt (modified) (1 diff)
-
trunk/includes/class-nota-api.php (modified) (1 diff)
-
trunk/nota-wordpress-plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nota-ai-tools/tags/0.11.1/includes/class-nota-api.php
r3131844 r3132378 65 65 ) 66 66 ); 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; 69 71 70 72 $url = $this->get_api_url(); -
nota-ai-tools/tags/0.11.1/nota-wordpress-plugin.php
r3131844 r3132378 3 3 * Plugin Name: Nota Tools 4 4 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more. 5 * Version: 0.11. 05 * Version: 0.11.1 6 6 * Author: Nota 7 7 * Author URI: https://heynota.com … … 14 14 defined( 'ABSPATH' ) || exit; 15 15 16 define( 'NOTA_PLUGIN_VERSION', '0.11. 0' );16 define( 'NOTA_PLUGIN_VERSION', '0.11.1' ); 17 17 18 18 if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) { -
nota-ai-tools/tags/0.11.1/readme.txt
r3131844 r3132378 4 4 License URI: http://www.gnu.org/licenses/gpl.html 5 5 Requires PHP: 7.2.5 6 Stable tag: 0.11. 06 Stable tag: 0.11.1 7 7 Tested up to: 6.5.3 8 8 -
nota-ai-tools/trunk/includes/class-nota-api.php
r3131844 r3132378 65 65 ) 66 66 ); 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; 69 71 70 72 $url = $this->get_api_url(); -
nota-ai-tools/trunk/nota-wordpress-plugin.php
r3131844 r3132378 3 3 * Plugin Name: Nota Tools 4 4 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more. 5 * Version: 0.11. 05 * Version: 0.11.1 6 6 * Author: Nota 7 7 * Author URI: https://heynota.com … … 14 14 defined( 'ABSPATH' ) || exit; 15 15 16 define( 'NOTA_PLUGIN_VERSION', '0.11. 0' );16 define( 'NOTA_PLUGIN_VERSION', '0.11.1' ); 17 17 18 18 if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) { -
nota-ai-tools/trunk/readme.txt
r3131844 r3132378 4 4 License URI: http://www.gnu.org/licenses/gpl.html 5 5 Requires PHP: 7.2.5 6 Stable tag: 0.11. 06 Stable tag: 0.11.1 7 7 Tested up to: 6.5.3 8 8
Note: See TracChangeset
for help on using the changeset viewer.