Plugin Directory

Changeset 3442290


Ignore:
Timestamp:
01/19/2026 08:19:04 AM (7 weeks ago)
Author:
codingbunny
Message:

v.1.1.1

Location:
coding-bunny-llms-generator
Files:
30 added
3 edited

Legend:

Unmodified
Added
Removed
  • coding-bunny-llms-generator/trunk/coding-bunny-llms-generator.php

    r3393019 r3442290  
    44 * Plugin URI: https://coding-bunny.com/llms-generator/
    55 * Description: Generates and maintains an llms.txt file at site root to guide LLM/AI crawlers about your content structure and priorities.
    6  * Version: 1.1.0
     6 * Version: 1.1.1
    77 * Requires at least: 6.0
    88 * Requires PHP: 8.0
     
    2121}
    2222
    23 define( 'CBLLMS_VERSION', '1.1.0' );
     23define( 'CBLLMS_VERSION', '1.1.1' );
    2424define( 'CBLLMS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
    2525define( 'CBLLMS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • coding-bunny-llms-generator/trunk/includes/generator/class-cbllms-utils.php

    r3393019 r3442290  
    153153        }
    154154
    155         $text = preg_replace( '/([.!?])([^\s])/u', '$1 $2', $text );
     155        $text = preg_replace( '/(?<!\d)([.!?])(?!\d)([^\s])/u', '$1 $2', $text );
    156156
    157157        $labels = array( 'Address', 'Phone', 'Email', 'Tel', 'Fax', 'Opening Hours' );
     
    188188        }
    189189
    190         $text = preg_replace( '/([.,;:])([^\s])/u', '$1 $2', $text );
     190        $text = preg_replace( '/(?<!\d)([.,;:])(?!\d)([^\s])/u', '$1 $2', $text );
     191
    191192        $text = preg_replace( '/\s+([.,;:])/u', '$1', $text );
    192193        $text = preg_replace( "/[ \t]+\n/", "\n", $text );
  • coding-bunny-llms-generator/trunk/readme.txt

    r3404916 r3442290  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 1.1.0
     7Stable tag: 1.1.1
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7373== Changelog ==
    7474
    75 = 1.1.0: 2024-11-10 =
     75= 1.1.1: 2026-01-19 =
     76* Fix: Fixed a bug that inserted an unwanted space within numeric values
     77
     78= 1.1.0: 2025-11-10 =
    7679* New: Added comprehensive server configuration management
    7780* New: Automatic .htaccess setup for Apache/LiteSpeed servers
     
    8992* Fix: Improved code documentation with complete DocBlocks
    9093
    91 = 1.0.3: 2024-11-06 =
     94= 1.0.3: 2025-11-06 =
    9295* Improved: Improved UTF-8 encoding of the generated file.
    9396
    94 = 1.0.2: 2024-10-29 =
     97= 1.0.2: 2025-10-29 =
    9598* New: Publish to the WordPress repository.
    9699
    97 = 1.0.1: 2024-10-17 =
     100= 1.0.1: 2025-10-17 =
    98101* Fix: Corrected the display of special characters in browsers.
    99102
    100 = 1.0.0: 2024-10-09 =
     103= 1.0.0: 2025-10-09 =
    101104* New: Initial release
Note: See TracChangeset for help on using the changeset viewer.