Releases: hydephp/framework
v0.27.11-beta - Add page priorities to sitemap generation
What's Changed
- Fix #429: Add page priorities to sitemap generation by @caendesilva in #437
Full Changelog: v0.27.10-beta...v0.27.11-beta
v0.27.10-beta - Improve RSS image handling and add commands to build sitemap and RSS feeds
About
Improves the RSS feed by allowing remote images in enclosures. When an image stored externally is detected, Hyde will make an HTTP HEAD request to try to get the content length from the response headers. If this fails, or if a local image is not found, a notice is sent to the console and the length is set to zero.
It also adds two new commands for compiling the sitemap and RSS feed respectively:
php hyde build:sitemap
php hyde build:rss
What's Changed
- Improve RSS image handling and feed and sitemap generation processes by @caendesilva in #435
Full Changelog: v0.27.9-beta...v0.27.10-beta
v0.27.9-beta - Add meta link to sitemaps automatically
What's Changed
Adds a link tag to the sitemap.xml in the head section when the feature is enabled
Full Changelog: v0.27.8-beta...v0.27.9-beta
v0.27.8-beta - Bugfix: Improve RSS enclosure path normalization
Improve RSS image path normalization by using basename() function in dab533f
Full Changelog: v0.27.7-beta...v0.27.8-beta
v0.27.7-beta - Bugfix for RSS site URL
Normalize the site URL fixing possible duplications in generated links, such as the Atom feed. a4b9ce7
Full Changelog: v0.27.6-beta...v0.27.7-beta
v0.27.6-beta - Bugfix for RSS media length
Patch filesize error case by normalizing media path 40e2170
v0.27.5-beta - Fix sidebar ordering bug
What's Changed
- Fix bug where categorized documentation sidebar items were not sorted by @caendesilva in #422
Full Changelog: v0.27.4-beta...v0.27.5-beta
v0.27.4-beta - Add meta link to RSS feed automatically, bugfix
What's Changed
Feature: Add meta links to the RSS feed
Fix: Add page slug property to BladePage model for compatibility, fixing bug where Blade pages did not get canonical link tags
Full Changelog: v0.27.3-beta...v0.27.4-beta
v0.27.3-beta - Change RSS feed default filename to feed.xml
What's Changed
- Change RSS feed default filename to feed.xml
Full Changelog: v0.27.2-beta...v0.27.3-beta
v0.27.2-beta - Adds RSS feed generation
New Features:
RSS feed generation
When enabled, an RSS feed with your Markdown blog posts will be generated when you compile your static site.
Note that this requires that a site_url is set!
'generateRssFeed' => true, // Default is true
You can customize the output filename using the following:
'rssFilename' => 'feed.xml', // Default is feed.rss
You can set the RSS channel description using the following:
'rssDescription' => 'A collection of articles and tutorials from my blog', // Example
If an rssDescription is not set one is created by appending "RSS Feed" to your site name.
What's Changed
- Add RSS feed for Markdown blog posts by @caendesilva in #413
Full Changelog: v0.27.1-beta...v0.27.2-beta