Changeset 3431466
- Timestamp:
- 01/03/2026 06:34:08 AM (7 weeks ago)
- Location:
- calliope/trunk
- Files:
-
- 5 edited
-
calliope.php (modified) (1 diff)
-
readme-es.txt (modified) (2 diffs)
-
readme-ja.txt (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
src/Database/Migration.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
calliope/trunk/calliope.php
r3431447 r3431466 4 4 Plugin URI: https://wordpress.org/plugins/calliope/ 5 5 Description: WordPress AI Contents Generator - Automatically generate high-quality content using AI technology 6 Version: 3.0. 96 Version: 3.0.10 7 7 Author: homio13 8 8 Author URI: https://profiles.wordpress.org/homio13/ -
calliope/trunk/readme-es.txt
r3431447 r3431466 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.0. 97 Stable tag: 3.0.10 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 128 128 == Changelog == 129 129 130 = 3.0.10 = 131 * 🔧 **Corrección de Errores**: Solucionado el desajuste del nombre de columna de la base de datos (calliope_feeds_id → feeds_id) que causaba fallos en la generación de artículos en algunos entornos 132 130 133 = 3.0.9 = 131 134 * 🔧 **Corrección de Errores**: Solucionado el fallo de generación de artículos causado por caracteres UTF-8 de 4 bytes (emojis) en el contenido generado -
calliope/trunk/readme-ja.txt
r3431447 r3431466 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.0. 97 Stable tag: 3.0.10 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 128 128 == Changelog == 129 129 130 = 3.0.10 = 131 * 🔧 **バグ修正**: 一部環境で記事生成が失敗するデータベースカラム名の不一致を修正(calliope_feeds_id → feeds_id) 132 130 133 = 3.0.9 = 131 134 * 🔧 **バグ修正**: AI生成コンテンツに含まれる4バイトUTF-8文字(絵文字)による記事生成失敗を修正 -
calliope/trunk/readme.txt
r3431447 r3431466 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 3.0. 97 Stable tag: 3.0.10 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 128 128 == Changelog == 129 129 130 = 3.0.10 = 131 * 🔧 **Bug Fix**: Fixed database column name mismatch (calliope_feeds_id → feeds_id) causing article generation to fail on some environments 132 130 133 = 3.0.9 = 131 134 * 🔧 **Bug Fix**: Fixed article generation failure caused by 4-byte UTF-8 characters (emoji) in generated content -
calliope/trunk/src/Database/Migration.php
r3431447 r3431466 59 59 /// ver3.0.9 60 60 if (!self::is_exist_migrate('3.0.9')) self::mig_3_0_9(); 61 /// ver3.0.10 62 if (!self::is_exist_migrate('3.0.10')) self::mig_3_0_10(); 61 63 } 62 64 … … 534 536 Logger::log('migrate ver3.0.9 completed .... '); 535 537 } 538 539 /** 540 * Migration version 3.0.10 541 * calliope_feeds_scheduleテーブルのカラム名修正(calliope_feeds_id → feeds_id) 542 */ 543 public static function mig_3_0_10() 544 { 545 Logger::log('migrate ver3.0.10 start .... '); 546 547 global $wpdb; 548 549 // カラム名が calliope_feeds_id の場合、feeds_id にリネーム 550 $column_exists = $wpdb->get_results( 551 $wpdb->prepare( 552 "SHOW COLUMNS FROM %1s LIKE 'calliope_feeds_id'", 553 Config::TABLE_FEEDS_SCHEDULE 554 ) 555 ); 556 557 if (!empty($column_exists)) { 558 $wpdb->query( 559 $wpdb->prepare( 560 "ALTER TABLE %1s 561 CHANGE `calliope_feeds_id` `feeds_id` int(11) DEFAULT NULL COMMENT 'calliope_feedsテーブルのID'", 562 Config::TABLE_FEEDS_SCHEDULE 563 ) 564 ); 565 Logger::log('migrate ver3.0.10 - renamed calliope_feeds_id to feeds_id'); 566 } 567 568 self::migrate_history_update('3.0.10'); 569 570 Logger::log('migrate ver3.0.10 completed .... '); 571 } 536 572 }
Note: See TracChangeset
for help on using the changeset viewer.