Plugin Directory

Changeset 3355614


Ignore:
Timestamp:
09/03/2025 06:41:24 PM (7 months ago)
Author:
braintum
Message:

Preparing for 1.7.1 release

Location:
ultimate-faq-solution/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ultimate-faq-solution/trunk/inc/Chatbot.php

    r3338582 r3355614  
    9898                'header_background_color'     => cmb2_get_option( 'ufaqsw_chatbot_settings', 'header_background_color' ),
    9999                'header_text_color'           => cmb2_get_option( 'ufaqsw_chatbot_settings', 'header_text_color' ),
    100                 'body_text'                   => wp_kses_post(
    101                     apply_filters(
    102                         'the_content',
    103                         cmb2_get_option( 'ufaqsw_chatbot_settings', 'body_text' )
    104                     )
    105                 ),
     100                'body_text'                   => wpautop( cmb2_get_option( 'ufaqsw_chatbot_settings', 'body_text' ) ),
    106101                'preloader_text'              => cmb2_get_option( 'ufaqsw_chatbot_settings', 'preloader_text' ),
    107102                'loading_animation_color'     => cmb2_get_option( 'ufaqsw_chatbot_settings', 'loading_animation_color' ) ? cmb2_get_option( 'ufaqsw_chatbot_settings', 'loading_animation_color' ) : '#222',
  • ultimate-faq-solution/trunk/inc/languages/ultimate-faq-solution.pot

    r3338582 r3355614  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Ultimate FAQ Solution 1.7.0\n"
     5"Project-Id-Version: Ultimate FAQ Solution 1.7.1\n"
    66"Report-Msgid-Bugs-To: "
    77"https://wordpress.org/support/plugin/ultimate-faq-solution\n"
    8 "POT-Creation-Date: 2025-08-03 18:54:12+00:00\n"
     8"POT-Creation-Date: 2025-09-03 18:29:45+00:00\n"
    99"MIME-Version: 1.0\n"
    1010"Content-Type: text/plain; charset=utf-8\n"
     
    7575msgstr ""
    7676
    77 #: inc/Chatbot.php:108
     77#: inc/Chatbot.php:103
    7878msgid "Back"
    7979msgstr ""
    8080
    81 #: inc/Chatbot.php:109 inc/admin/chatbot.php:173
     81#: inc/Chatbot.php:104 inc/admin/chatbot.php:173
    8282msgid "Close the window"
    8383msgstr ""
    8484
    85 #: inc/Chatbot.php:111 inc/admin/chatbot.php:193
     85#: inc/Chatbot.php:106 inc/admin/chatbot.php:193
    8686msgid "[count] Frequently Asked Questions"
    8787msgstr ""
    8888
    89 #: inc/Chatbot.php:149
     89#: inc/Chatbot.php:144
    9090msgid "No FAQs found."
    9191msgstr ""
  • ultimate-faq-solution/trunk/init.php

    r3338582 r3355614  
    1010 *
    1111 * Plugin Name: Ultimate FAQ Solution
    12  * Version: 1.7.0
     12 * Version: 1.7.1
    1313 * Plugin URI: https://www.braintum.com/ultimate-faq-solution/
    1414 * Description: A WordPress plugin to create, organize, and display FAQs with responsive layouts and styles.
     
    3434* Use `plugin_dir_path` and `plugin_dir_url` only when necessary to reduce overhead.
    3535*/
    36 define( 'UFAQSW_VERSION', '1.7.0' );
     36define( 'UFAQSW_VERSION', '1.7.1' );
    3737define( 'UFAQSW_PRFX', 'ufaqsw' );
    3838define( 'UFAQSW_BASE', plugin_basename( __FILE__ ) );
  • ultimate-faq-solution/trunk/readme.txt

    r3338582 r3355614  
    55Requires at least: 5.1 
    66Tested up to: 6.8.2 
    7 Stable tag: 1.7.0
     7Stable tag: 1.7.1
    88Requires PHP: 7.4.0 
    99License: GPLv2 or later 
     
    135135
    136136== Changelog ==
     137=1.7.1=
     138* Fixed: Page information incorrectly populating inside the FAQ Assistant area.
     139* Improved: Data handling to ensure only relevant content is displayed in the chatbot assistant interface.
    137140
    138141=1.7.0=
  • ultimate-faq-solution/trunk/vendor/composer/installed.php

    r3338582 r3355614  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => 'd48b2a43d0e8baf7e7019e533f566bea97b7f579',
     6        'reference' => '67bdcb706f0b37ab316a4aac9c1a3d89e1ea3364',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-main',
    2424            'version' => 'dev-main',
    25             'reference' => 'd48b2a43d0e8baf7e7019e533f566bea97b7f579',
     25            'reference' => '67bdcb706f0b37ab316a4aac9c1a3d89e1ea3364',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.