Changeset 2871648
- Timestamp:
- 02/27/2023 11:55:32 AM (3 years ago)
- Location:
- aiwriter
- Files:
-
- 6 edited
- 1 copied
-
tags/0.7.1 (copied) (copied from aiwriter/trunk)
-
tags/0.7.1/aiwriter.php (modified) (2 diffs)
-
tags/0.7.1/readme.txt (modified) (1 diff)
-
tags/0.7.1/uninstall.php (modified) (1 diff)
-
trunk/aiwriter.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
aiwriter/tags/0.7.1/aiwriter.php
r2871571 r2871648 5 5 * Requires at least: 6.0.0 6 6 * Requires PHP: 8.0.0 7 * Version: 0.7. 07 * Version: 0.7.1 8 8 * Author: floriansimeth 9 9 * License: GPL-2.0-or-later … … 275 275 $body->data->message, 276 276 $body->data->code, 277 ), 278 $response 279 ); 280 } 281 282 if ( isset( $body->code, $body->message ) ) { 283 return new WP_Error( 284 'ai-writer-token-response-status-code', 285 sprintf( 286 __( 'Could not fetch token from API. Got error: %s (%d)', 'aiwriter' ), 287 $body->message, 288 $body->code, 277 289 ), 278 290 $response -
aiwriter/tags/0.7.1/readme.txt
r2871571 r2871648 3 3 Tags: gpt3, chat-gpt, ai, gpt, gpt-3 content creation, content generation, content automation, openai 4 4 Tested up to: 6.1.1 5 Stable tag: 0.7. 05 Stable tag: 0.7.1 6 6 Requires PHP: 8.0 7 7 Requires at least: 6.0 -
aiwriter/tags/0.7.1/uninstall.php
r2862261 r2871648 15 15 $wpdb->delete( $wpdb->usermeta, [ 'meta_key' => 'aiwriter_temperature' ] ); 16 16 $wpdb->delete( $wpdb->usermeta, [ 'meta_key' => 'aiwriter_textLength' ] ); 17 $wpdb->delete( $wpdb->usermeta, [ 'meta_key' => 'aiwriter_onboardingCompleted' ] ); -
aiwriter/trunk/aiwriter.php
r2871571 r2871648 5 5 * Requires at least: 6.0.0 6 6 * Requires PHP: 8.0.0 7 * Version: 0.7. 07 * Version: 0.7.1 8 8 * Author: floriansimeth 9 9 * License: GPL-2.0-or-later … … 275 275 $body->data->message, 276 276 $body->data->code, 277 ), 278 $response 279 ); 280 } 281 282 if ( isset( $body->code, $body->message ) ) { 283 return new WP_Error( 284 'ai-writer-token-response-status-code', 285 sprintf( 286 __( 'Could not fetch token from API. Got error: %s (%d)', 'aiwriter' ), 287 $body->message, 288 $body->code, 277 289 ), 278 290 $response -
aiwriter/trunk/readme.txt
r2871571 r2871648 3 3 Tags: gpt3, chat-gpt, ai, gpt, gpt-3 content creation, content generation, content automation, openai 4 4 Tested up to: 6.1.1 5 Stable tag: 0.7. 05 Stable tag: 0.7.1 6 6 Requires PHP: 8.0 7 7 Requires at least: 6.0 -
aiwriter/trunk/uninstall.php
r2862261 r2871648 15 15 $wpdb->delete( $wpdb->usermeta, [ 'meta_key' => 'aiwriter_temperature' ] ); 16 16 $wpdb->delete( $wpdb->usermeta, [ 'meta_key' => 'aiwriter_textLength' ] ); 17 $wpdb->delete( $wpdb->usermeta, [ 'meta_key' => 'aiwriter_onboardingCompleted' ] );
Note: See TracChangeset
for help on using the changeset viewer.