Plugin Directory

Changeset 3382014


Ignore:
Timestamp:
10/21/2025 03:38:47 PM (5 months ago)
Author:
sergiotrinity
Message:

v5.23

Location:
trinity-audio/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trinity-audio/trunk/README.txt

    r3377254 r3382014  
    154154== Changelog ==
    155155
     156= 5.23 =
     157 *Release Date - Oct 21, 2025*
     158 * Added more resilience to the plugin
     159
    156160= 5.22.1 =
    157161 *Release Date - Oct 13, 2025*
  • trinity-audio/trunk/admin/index.php

    r3371934 r3382014  
    7070              'contact_us' => wp_create_nonce('contact_us_action'),
    7171              'regenerate_tokens' => wp_create_nonce('regenerate_tokens_action'),
    72               'send_metric' => wp_create_nonce('send_metric_action_action'),
     72              'send_metric' => wp_create_nonce('send_metric_action'),
    7373              'remove_post_banner' => wp_create_nonce('remove_post_banner_action'),
    7474              'get_package_info' => wp_create_nonce('get_package_info_action')
  • trinity-audio/trunk/js/admin.js

    r3371934 r3382014  
    241241
    242242async function isFormValid() {
     243  if (!window.TRINITY_UNIT_CONFIGURATION?.validate) return;
     244
    243245  return (await window.TRINITY_UNIT_CONFIGURATION.validate()).isValid;
    244246}
     
    246248// check if we need to disable/enable save button
    247249setInterval(async () => {
    248   if (!window.TRINITY_UNIT_CONFIGURATION?.validate) return;
    249 
    250250  const isValid = await isFormValid();
    251251  if ($('.trinity-page .save-button').hasClass('submitted')) return; // don't remove disable class when form is submitted
  • trinity-audio/trunk/js/metaboxes.js

    r3371934 r3382014  
    11async function trinityMetaVoiceConfig() {
     2  if (!window.TRINITY_UNIT_CONFIGURATION?.getFormData) return console.error('TRINITY_UNIT_CONFIGURATION.getFormData is not defined. Possible issue with loading Unit Configuration widget');
     3
    24  const {dispatch} = wp.data;
    35  const editorDispatch = dispatch('core/editor');
  • trinity-audio/trunk/trinity.php

    r3377254 r3382014  
    99   * Plugin URI:        https://www.trinityaudio.ai/the-trinity-audio-wordpress-plugin-implementation-guide
    1010   * Description:       This plugin generates an audio version of the post, for absolutely FREE. You can choose the language and the gender of the voice reading your content. You also have the option to add Trinity Audio's player on select posts or have it audiofy all of your content. In both cases, it only takes a few simple clicks to get it done. The plugin is built through collaboration with the Amazon Polly team.
    11    * Version:           5.22.1
     11   * Version:           5.23
    1212   * Author:            Trinity Audio
    1313   * Author URI:        https://trinityaudio.ai/
Note: See TracChangeset for help on using the changeset viewer.