Plugin Directory

Changeset 2876997


Ignore:
Timestamp:
03/09/2023 09:22:02 AM (3 years ago)
Author:
outranking
Message:

1.0.5 updated

Location:
outranking
Files:
26 added
4 edited

Legend:

Unmodified
Added
Removed
  • outranking/trunk/README.txt

    r2727363 r2876997  
    33Tags: content, content writing, content editing, seo, seo content, ai writing, serp analysis, optimizing content, data, import, export
    44Requires at least: 5.0
    5 Tested up to: 5.9.3
     5Tested up to: 6.1.1
    66Requires PHP: 5.6
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GNU General Public License v3 or later
    99License URL: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    2828* Initial release
    2929
    30 ===== v1.0.2 : May 11 2022 =====
     30= v1.0.2 : May 11 2022 =
    3131- Import TITLE, CONTENT, IMAGES from API
    3232- Added blank index files
    3333- Moved essential functions to AJAX file
    3434
    35 ===== v1.0.3 : May 18 2022 =====
     35= v1.0.3 : May 18 2022 =
    3636- Export Title, Description, URL, and content from WordPress to apps.
    3737- Added alt tag in image
    3838
    39 ===== v1.0.4 : May 20 2022 =====
     39= v1.0.4 : May 20 2022 =
    4040- Removed SEO Score field
    4141
     42= v1.0.5 : Mar 06 2023 =
     43- Added Support for Unicode characters while importing and exporting
  • outranking/trunk/changelog.txt

    r2727363 r2876997  
    2323===== v1.0.4 : May 20 2022 =====
    2424- Removed SEO Score field
     25
     26===== v1.0.5 : Mar 06 2023 =====
     27- Added Support for Unicode characters while importing and exporting
  • outranking/trunk/inc/ajax.php

    r2725947 r2876997  
    11<?php
     2
    23/**
    34 * Function to handle save token action
     
    8283         */
    8384        $document = new DOMDocument();
    84         $document->loadHTML($article->content);
     85        $document->loadHTML(mb_convert_encoding($article->content, 'HTML-ENTITIES', 'UTF-8'));
    8586        $images = $document->getElementsByTagName('img');
    8687        $a_tags = $document->getElementsByTagName('a');
  • outranking/trunk/outranking.php

    r2727363 r2876997  
    33Plugin Name: Outranking
    44Description: Outranking Extension for WordPress
    5 Version: 1.0.4
     5Version: 1.0.5
    66Author: Outranking LLC
    77Author URI: https://www.outranking.io/
Note: See TracChangeset for help on using the changeset viewer.