Plugin Directory

Changeset 3231478


Ignore:
Timestamp:
01/29/2025 06:09:03 PM (14 months ago)
Author:
heynota
Message:

Update to version 0.14.2 from GitHub

Location:
nota-ai-tools
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • nota-ai-tools/tags/0.14.2/includes/class-nota-post-tools.php

    r3230022 r3231478  
    446446
    447447        // Retrieve the 'nota_published_elements' meta value.
    448         $script_id = get_post_meta( $post->ID, self::$private_meta_keys['nota_script_article_id'], true );
     448        $script_id = get_post_meta( $post->ID, self::$private_meta_keys['script_article_id'], true );
    449449
    450450        // If the meta value is not empty, output the meta tag.
    451451        if ( ! empty( $script_id ) ) {
    452             echo '<meta name="nota-post-source" content="script" />' . PHP_EOL;
     452            echo '<meta name="nota-post-source" content="script" data-scriptid="' . esc_attr( $script_id ) . '" />' . PHP_EOL;
    453453        }
    454454    }
  • nota-ai-tools/tags/0.14.2/nota-wordpress-plugin.php

    r3230022 r3231478  
    33 * Plugin Name: Nota Tools
    44 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more.
    5  * Version: 0.14.1
     5 * Version: 0.14.2
    66 * Author: Nota
    77 * Author URI: https://heynota.com
     
    1414defined( 'ABSPATH' ) || exit;
    1515
    16 define( 'NOTA_PLUGIN_VERSION', '0.14.1' );
     16define( 'NOTA_PLUGIN_VERSION', '0.14.2' );
    1717
    1818if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) {
  • nota-ai-tools/tags/0.14.2/readme.txt

    r3230022 r3231478  
    44License URI: http://www.gnu.org/licenses/gpl.html
    55Requires PHP: 7.2.5
    6 Stable tag: 0.14.1
     6Stable tag: 0.14.2
    77Tested up to: 6.7.1
    88
  • nota-ai-tools/trunk/includes/class-nota-post-tools.php

    r3230022 r3231478  
    446446
    447447        // Retrieve the 'nota_published_elements' meta value.
    448         $script_id = get_post_meta( $post->ID, self::$private_meta_keys['nota_script_article_id'], true );
     448        $script_id = get_post_meta( $post->ID, self::$private_meta_keys['script_article_id'], true );
    449449
    450450        // If the meta value is not empty, output the meta tag.
    451451        if ( ! empty( $script_id ) ) {
    452             echo '<meta name="nota-post-source" content="script" />' . PHP_EOL;
     452            echo '<meta name="nota-post-source" content="script" data-scriptid="' . esc_attr( $script_id ) . '" />' . PHP_EOL;
    453453        }
    454454    }
  • nota-ai-tools/trunk/nota-wordpress-plugin.php

    r3230022 r3231478  
    33 * Plugin Name: Nota Tools
    44 * Description: Nota’s assistive AI tools help publishers create headlines, summaries, SEO keywords and more.
    5  * Version: 0.14.1
     5 * Version: 0.14.2
    66 * Author: Nota
    77 * Author URI: https://heynota.com
     
    1414defined( 'ABSPATH' ) || exit;
    1515
    16 define( 'NOTA_PLUGIN_VERSION', '0.14.1' );
     16define( 'NOTA_PLUGIN_VERSION', '0.14.2' );
    1717
    1818if ( ! defined( 'NOTA_PLUGIN_FILE' ) ) {
  • nota-ai-tools/trunk/readme.txt

    r3230022 r3231478  
    44License URI: http://www.gnu.org/licenses/gpl.html
    55Requires PHP: 7.2.5
    6 Stable tag: 0.14.1
     6Stable tag: 0.14.2
    77Tested up to: 6.7.1
    88
Note: See TracChangeset for help on using the changeset viewer.