Plugin Directory

Changeset 2466347


Ignore:
Timestamp:
02/01/2021 11:07:48 AM (5 years ago)
Author:
_luigi
Message:

Publishing version 5.2.1

Location:
sitetree
Files:
5 deleted
3 edited
46 copied

Legend:

Unmodified
Added
Removed
  • sitetree/tags/5.2.1/includes/builders/site-tree-builder.class.php

    r2453741 r2466347  
    534534        else {
    535535            $fields .= ', p.post_parent, p.post_type';
     536        }
     537
     538        $page_on_front = (int) get_option( 'page_on_front' );
     539
     540        if ( $page_on_front > 0 ) {
     541           $this->appendToQueryClause( 'order_by', "p.ID = {$page_on_front} DESC," );
    536542        }
    537543
  • sitetree/tags/5.2.1/readme.txt

    r2453741 r2466347  
    77Tested up to: 5.6
    88Requires PHP: 5.6.20
    9 Stable tag: 5.2
     9Stable tag: 5.2.1
    1010License: GPLv3
    1111License URI: https://opensource.org/licenses/GPL-3.0
     
    108108= Are the XML Sitemaps produced by SiteTree human-readable? =
    109109
    110 Yes, they are. Although the Google Sitemap and the Google News Sitemap are crawler-oriented sitemaps, they are both human-readable.
     110Yes, they are. Although the Google Sitemap and the Google News Sitemap are crawler-oriented sitemaps, they are both equipped with an XSL Template that makes them human-readable.
    111111
    112112= Are there limitations on the capacity of the sitemaps? =
     
    131131== Upgrade Notice ==
    132132
    133 = 5.2 =
     133= 5.2.1 =
    134134
    135135This update finally removes from the database the Priority and Change Frequency metadata deprecated since SiteTree 3.0.
     
    137137
    138138== Changelog ==
     139
     140= 5.2.1 (1 February 2020) =
     141
     142Fixed a bug that caused the home page item in the hyper-list of Pages of your Site Tree to not be kept always at the top of the hyper-list.
     143
    139144
    140145= 5.2 (11 January 2020) =
  • sitetree/tags/5.2.1/sitetree.php

    r2453741 r2466347  
    44 * Plugin URI: https://luigicavalieri.com/sitetree/
    55 * Description: Sitemaps, Hyper-lists and Beyond.
    6  * Version: 5.2
     6 * Version: 5.2.1
    77 * Requires: 5.3
    88 * Author: Luigi Cavalieri
     
    1313 *
    1414 * @package SiteTree
    15  * @version 5.2
     15 * @version 5.2.1
    1616 * @copyright Copyright 2021 Luigi Cavalieri.
    1717 * @license https://opensource.org/licenses/GPL-3.0 GPL v3.0
  • sitetree/trunk/includes/builders/site-tree-builder.class.php

    r2453741 r2466347  
    534534        else {
    535535            $fields .= ', p.post_parent, p.post_type';
     536        }
     537
     538        $page_on_front = (int) get_option( 'page_on_front' );
     539
     540        if ( $page_on_front > 0 ) {
     541           $this->appendToQueryClause( 'order_by', "p.ID = {$page_on_front} DESC," );
    536542        }
    537543
  • sitetree/trunk/readme.txt

    r2453741 r2466347  
    77Tested up to: 5.6
    88Requires PHP: 5.6.20
    9 Stable tag: 5.2
     9Stable tag: 5.2.1
    1010License: GPLv3
    1111License URI: https://opensource.org/licenses/GPL-3.0
     
    108108= Are the XML Sitemaps produced by SiteTree human-readable? =
    109109
    110 Yes, they are. Although the Google Sitemap and the Google News Sitemap are crawler-oriented sitemaps, they are both human-readable.
     110Yes, they are. Although the Google Sitemap and the Google News Sitemap are crawler-oriented sitemaps, they are both equipped with an XSL Template that makes them human-readable.
    111111
    112112= Are there limitations on the capacity of the sitemaps? =
     
    131131== Upgrade Notice ==
    132132
    133 = 5.2 =
     133= 5.2.1 =
    134134
    135135This update finally removes from the database the Priority and Change Frequency metadata deprecated since SiteTree 3.0.
     
    137137
    138138== Changelog ==
     139
     140= 5.2.1 (1 February 2020) =
     141
     142Fixed a bug that caused the home page item in the hyper-list of Pages of your Site Tree to not be kept always at the top of the hyper-list.
     143
    139144
    140145= 5.2 (11 January 2020) =
  • sitetree/trunk/sitetree.php

    r2453741 r2466347  
    44 * Plugin URI: https://luigicavalieri.com/sitetree/
    55 * Description: Sitemaps, Hyper-lists and Beyond.
    6  * Version: 5.2
     6 * Version: 5.2.1
    77 * Requires: 5.3
    88 * Author: Luigi Cavalieri
     
    1313 *
    1414 * @package SiteTree
    15  * @version 5.2
     15 * @version 5.2.1
    1616 * @copyright Copyright 2021 Luigi Cavalieri.
    1717 * @license https://opensource.org/licenses/GPL-3.0 GPL v3.0
Note: See TracChangeset for help on using the changeset viewer.