Changeset 2876997
- Timestamp:
- 03/09/2023 09:22:02 AM (3 years ago)
- Location:
- outranking
- Files:
-
- 26 added
- 4 edited
-
tags/1.0.5 (added)
-
tags/1.0.5/README.txt (added)
-
tags/1.0.5/assets (added)
-
tags/1.0.5/assets/css (added)
-
tags/1.0.5/assets/css/outranking_admin.css (added)
-
tags/1.0.5/assets/images (added)
-
tags/1.0.5/assets/images/error.svg (added)
-
tags/1.0.5/assets/images/export.svg (added)
-
tags/1.0.5/assets/images/import.svg (added)
-
tags/1.0.5/assets/images/map-pin.svg (added)
-
tags/1.0.5/assets/images/outranking_dark_long.png (added)
-
tags/1.0.5/assets/images/outranking_white_long.png (added)
-
tags/1.0.5/assets/images/setting.svg (added)
-
tags/1.0.5/assets/images/time.svg (added)
-
tags/1.0.5/assets/images/user-profile.jpg (added)
-
tags/1.0.5/assets/index.php (added)
-
tags/1.0.5/assets/js (added)
-
tags/1.0.5/assets/js/outranking_admin.js (added)
-
tags/1.0.5/changelog.txt (added)
-
tags/1.0.5/inc (added)
-
tags/1.0.5/inc/ajax.php (added)
-
tags/1.0.5/inc/core.php (added)
-
tags/1.0.5/inc/index.php (added)
-
tags/1.0.5/inc/metabox.php (added)
-
tags/1.0.5/index.php (added)
-
tags/1.0.5/outranking.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/inc/ajax.php (modified) (2 diffs)
-
trunk/outranking.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
outranking/trunk/README.txt
r2727363 r2876997 3 3 Tags: content, content writing, content editing, seo, seo content, ai writing, serp analysis, optimizing content, data, import, export 4 4 Requires at least: 5.0 5 Tested up to: 5.9.35 Tested up to: 6.1.1 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GNU General Public License v3 or later 9 9 License URL: https://www.gnu.org/licenses/gpl-3.0.en.html … … 28 28 * Initial release 29 29 30 = ==== v1.0.2 : May 11 2022 =====30 = v1.0.2 : May 11 2022 = 31 31 - Import TITLE, CONTENT, IMAGES from API 32 32 - Added blank index files 33 33 - Moved essential functions to AJAX file 34 34 35 = ==== v1.0.3 : May 18 2022 =====35 = v1.0.3 : May 18 2022 = 36 36 - Export Title, Description, URL, and content from WordPress to apps. 37 37 - Added alt tag in image 38 38 39 = ==== v1.0.4 : May 20 2022 =====39 = v1.0.4 : May 20 2022 = 40 40 - Removed SEO Score field 41 41 42 = v1.0.5 : Mar 06 2023 = 43 - Added Support for Unicode characters while importing and exporting -
outranking/trunk/changelog.txt
r2727363 r2876997 23 23 ===== v1.0.4 : May 20 2022 ===== 24 24 - 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 1 1 <?php 2 2 3 /** 3 4 * Function to handle save token action … … 82 83 */ 83 84 $document = new DOMDocument(); 84 $document->loadHTML( $article->content);85 $document->loadHTML(mb_convert_encoding($article->content, 'HTML-ENTITIES', 'UTF-8')); 85 86 $images = $document->getElementsByTagName('img'); 86 87 $a_tags = $document->getElementsByTagName('a'); -
outranking/trunk/outranking.php
r2727363 r2876997 3 3 Plugin Name: Outranking 4 4 Description: Outranking Extension for WordPress 5 Version: 1.0. 45 Version: 1.0.5 6 6 Author: Outranking LLC 7 7 Author URI: https://www.outranking.io/
Note: See TracChangeset
for help on using the changeset viewer.