Changeset 3447626
- Timestamp:
- 01/27/2026 08:48:54 AM (2 months ago)
- Location:
- readmo-ai
- Files:
-
- 3 edited
- 19 copied
-
tags/1.2.3 (copied) (copied from readmo-ai/trunk)
-
tags/1.2.3/Controller/admin/class-readmo-ai-admin-settings.php (copied) (copied from readmo-ai/trunk/Controller/admin/class-readmo-ai-admin-settings.php)
-
tags/1.2.3/Controller/frontend/class-readmo-ai-ajax-handler.php (copied) (copied from readmo-ai/trunk/Controller/frontend/class-readmo-ai-ajax-handler.php)
-
tags/1.2.3/Controller/frontend/class-readmo-ai-tracking-handler.php (copied) (copied from readmo-ai/trunk/Controller/frontend/class-readmo-ai-tracking-handler.php)
-
tags/1.2.3/Infrastructure/dao/class-readmo-ai-settings-dao.php (copied) (copied from readmo-ai/trunk/Infrastructure/dao/class-readmo-ai-settings-dao.php) (2 diffs)
-
tags/1.2.3/View/admin/class-readmo-ai-admin-settings-view.php (copied) (copied from readmo-ai/trunk/View/admin/class-readmo-ai-admin-settings-view.php)
-
tags/1.2.3/assets/css/admin.css (copied) (copied from readmo-ai/trunk/assets/css/admin.css)
-
tags/1.2.3/assets/css/frontend.css (copied) (copied from readmo-ai/trunk/assets/css/frontend.css)
-
tags/1.2.3/assets/js/admin.js (copied) (copied from readmo-ai/trunk/assets/js/admin.js)
-
tags/1.2.3/assets/svg/question.svg (copied) (copied from readmo-ai/trunk/assets/svg/question.svg)
-
tags/1.2.3/languages/readmo-ai-zh_CN.mo (copied) (copied from readmo-ai/trunk/languages/readmo-ai-zh_CN.mo)
-
tags/1.2.3/languages/readmo-ai-zh_CN.po (copied) (copied from readmo-ai/trunk/languages/readmo-ai-zh_CN.po)
-
tags/1.2.3/languages/readmo-ai-zh_HK.mo (copied) (copied from readmo-ai/trunk/languages/readmo-ai-zh_HK.mo)
-
tags/1.2.3/languages/readmo-ai-zh_HK.po (copied) (copied from readmo-ai/trunk/languages/readmo-ai-zh_HK.po)
-
tags/1.2.3/languages/readmo-ai-zh_TW.mo (copied) (copied from readmo-ai/trunk/languages/readmo-ai-zh_TW.mo)
-
tags/1.2.3/languages/readmo-ai-zh_TW.po (copied) (copied from readmo-ai/trunk/languages/readmo-ai-zh_TW.po)
-
tags/1.2.3/languages/readmo-ai.pot (copied) (copied from readmo-ai/trunk/languages/readmo-ai.pot)
-
tags/1.2.3/readme.txt (copied) (copied from readmo-ai/trunk/readme.txt) (1 diff)
-
tags/1.2.3/readmo-ai.php (copied) (copied from readmo-ai/trunk/readmo-ai.php) (2 diffs)
-
trunk/Infrastructure/dao/class-readmo-ai-settings-dao.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/readmo-ai.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
readmo-ai/tags/1.2.3/Infrastructure/dao/class-readmo-ai-settings-dao.php
r3447574 r3447626 125 125 */ 126 126 public function get_auto_insert_settings() { 127 // Default: enabled = true, only 'post' type is checked ( page is excluded).127 // Default: enabled = true, only 'post' type is checked (all others excluded). 128 128 $defaults = array( 129 129 'enabled' => true, 130 130 'position' => 'after_content', 131 'excluded_post_types' => array( 'page'),131 'excluded_post_types' => array(), 132 132 'excluded_categories' => array(), 133 133 'excluded_posts' => array(), … … 138 138 // If no settings exist, initialize with defaults in database. 139 139 if ( empty( $settings ) ) { 140 // Dynamically exclude all public post types except 'post'. 141 $public_post_types = get_post_types( array( 'public' => true ), 'names' ); 142 unset( $public_post_types['post'] ); // post should be checked (not excluded). 143 unset( $public_post_types['attachment'] ); // attachment is not shown in tree. 144 $defaults['excluded_post_types'] = array_values( $public_post_types ); 145 140 146 update_option( self::AUTO_INSERT_OPTION_NAME, $defaults, true ); 141 147 return $defaults; -
readmo-ai/tags/1.2.3/readme.txt
r3447574 r3447626 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.2. 27 Stable tag: 1.2.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
readmo-ai/tags/1.2.3/readmo-ai.php
r3447574 r3447626 13 13 * Plugin Name: Readmo AI 14 14 * Description: AI-powered content analysis and optimization for WordPress with analytics tracking 15 * Version: 1.2. 215 * Version: 1.2.3 16 16 * Requires at least: 5.9 17 17 * Requires PHP: 7.4 … … 33 33 */ 34 34 if ( ! defined( 'READMO_AI_VERSION' ) ) { 35 define( 'READMO_AI_VERSION', '1.2. 2' );35 define( 'READMO_AI_VERSION', '1.2.3' ); 36 36 } 37 37 -
readmo-ai/trunk/Infrastructure/dao/class-readmo-ai-settings-dao.php
r3447574 r3447626 125 125 */ 126 126 public function get_auto_insert_settings() { 127 // Default: enabled = true, only 'post' type is checked ( page is excluded).127 // Default: enabled = true, only 'post' type is checked (all others excluded). 128 128 $defaults = array( 129 129 'enabled' => true, 130 130 'position' => 'after_content', 131 'excluded_post_types' => array( 'page'),131 'excluded_post_types' => array(), 132 132 'excluded_categories' => array(), 133 133 'excluded_posts' => array(), … … 138 138 // If no settings exist, initialize with defaults in database. 139 139 if ( empty( $settings ) ) { 140 // Dynamically exclude all public post types except 'post'. 141 $public_post_types = get_post_types( array( 'public' => true ), 'names' ); 142 unset( $public_post_types['post'] ); // post should be checked (not excluded). 143 unset( $public_post_types['attachment'] ); // attachment is not shown in tree. 144 $defaults['excluded_post_types'] = array_values( $public_post_types ); 145 140 146 update_option( self::AUTO_INSERT_OPTION_NAME, $defaults, true ); 141 147 return $defaults; -
readmo-ai/trunk/readme.txt
r3447574 r3447626 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.2. 27 Stable tag: 1.2.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
readmo-ai/trunk/readmo-ai.php
r3447574 r3447626 13 13 * Plugin Name: Readmo AI 14 14 * Description: AI-powered content analysis and optimization for WordPress with analytics tracking 15 * Version: 1.2. 215 * Version: 1.2.3 16 16 * Requires at least: 5.9 17 17 * Requires PHP: 7.4 … … 33 33 */ 34 34 if ( ! defined( 'READMO_AI_VERSION' ) ) { 35 define( 'READMO_AI_VERSION', '1.2. 2' );35 define( 'READMO_AI_VERSION', '1.2.3' ); 36 36 } 37 37
Note: See TracChangeset
for help on using the changeset viewer.