Plugin Directory

Changeset 2026550


Ignore:
Timestamp:
02/07/2019 12:59:45 PM (7 years ago)
Author:
yoannspace
Message:

Release version 1.2.1

Location:
rich-meta-in-rdfa
Files:
5 edited
22 copied

Legend:

Unmodified
Added
Removed
  • rich-meta-in-rdfa/tags/1.2.1/CHANGELOG.md

    r2022535 r2026550  
    44The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
    55and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
     6
     7## [1.2.1] - 2019-02-07
     8- The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones
     9with identifiers
    610
    711## [1.2.0] - 2019-01-31
  • rich-meta-in-rdfa/tags/1.2.1/README.txt

    r2022535 r2026550  
    66Tested up to: 4.9.1
    77Requires PHP: 5.6.35
    8 Stable tag: 1.2.0
     8Stable tag: 1.2.1
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    4848== Changelog ==
    4949
     50= 1.2.1 =
     51* The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones
     52with identifiers
     53
    5054= 1.2.0 =
    5155* A special sitemap can now be created to provide all posts of WP, their URL and Last modification date, this is
  • rich-meta-in-rdfa/tags/1.2.1/includes/class-rich-meta-in-rdfa.php

    r2022535 r2026550  
    6565            $this->version = RICH_META_IN_RDFA_VERSION;
    6666        } else {
    67             $this->version = '1.2.0';
     67            $this->version = '1.2.1';
    6868        }
    6969        $this->plugin_name = 'rich-meta-in-rdfa';
  • rich-meta-in-rdfa/tags/1.2.1/public/class-rich-meta-in-rdfa-public.php

    r2022535 r2026550  
    184184        global $wpdb;
    185185        $p = $wpdb->posts;
    186         return "$p.ID, $p.post_date, $p.post_title, $p.post_status, $p.post_modified, $p.post_type";
     186        return "$p.ID, $p.post_date, $p.post_title, $p.post_name, $p.post_status, $p.post_modified, $p.post_type";
    187187    }
    188188
  • rich-meta-in-rdfa/tags/1.2.1/rich-meta-in-rdfa.php

    r2022535 r2026550  
    1717 * Plugin URI:        https://github.com/dariah-eric/rich-meta-in-rdfa
    1818 * Description:       This plugin allows user to add RDFa into their posts.
    19  * Version:           1.2.0
     19 * Version:           1.2.1
    2020 * Author:            Yoann
    2121 * Author URI:        https://www.dariah.eu
  • rich-meta-in-rdfa/trunk/CHANGELOG.md

    r2022535 r2026550  
    44The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
    55and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
     6
     7## [1.2.1] - 2019-02-07
     8- The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones
     9with identifiers
    610
    711## [1.2.0] - 2019-01-31
  • rich-meta-in-rdfa/trunk/README.txt

    r2022535 r2026550  
    66Tested up to: 4.9.1
    77Requires PHP: 5.6.35
    8 Stable tag: 1.2.0
     8Stable tag: 1.2.1
    99License: Apache License - 2.0
    1010License URI: http://www.apache.org/licenses/LICENSE-2.0
     
    4848== Changelog ==
    4949
     50= 1.2.1 =
     51* The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones
     52with identifiers
     53
    5054= 1.2.0 =
    5155* A special sitemap can now be created to provide all posts of WP, their URL and Last modification date, this is
  • rich-meta-in-rdfa/trunk/includes/class-rich-meta-in-rdfa.php

    r2022535 r2026550  
    6565            $this->version = RICH_META_IN_RDFA_VERSION;
    6666        } else {
    67             $this->version = '1.2.0';
     67            $this->version = '1.2.1';
    6868        }
    6969        $this->plugin_name = 'rich-meta-in-rdfa';
  • rich-meta-in-rdfa/trunk/public/class-rich-meta-in-rdfa-public.php

    r2022535 r2026550  
    184184        global $wpdb;
    185185        $p = $wpdb->posts;
    186         return "$p.ID, $p.post_date, $p.post_title, $p.post_status, $p.post_modified, $p.post_type";
     186        return "$p.ID, $p.post_date, $p.post_title, $p.post_name, $p.post_status, $p.post_modified, $p.post_type";
    187187    }
    188188
  • rich-meta-in-rdfa/trunk/rich-meta-in-rdfa.php

    r2022535 r2026550  
    1717 * Plugin URI:        https://github.com/dariah-eric/rich-meta-in-rdfa
    1818 * Description:       This plugin allows user to add RDFa into their posts.
    19  * Version:           1.2.0
     19 * Version:           1.2.1
    2020 * Author:            Yoann
    2121 * Author URI:        https://www.dariah.eu
Note: See TracChangeset for help on using the changeset viewer.