Skip to content

Releases: hydephp/framework

v0.27.11-beta - Add page priorities to sitemap generation

21 May 17:20
b6d83ec
Compare
Choose a tag to compare

What's Changed

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

20 May 18:52
Compare
Choose a tag to compare

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

20 May 13:01
3b8cf08
Compare
Choose a tag to compare

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

19 May 20:51
Compare
Choose a tag to compare

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

19 May 20:03
Compare
Choose a tag to compare

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

19 May 19:15
40e2170
Compare
Choose a tag to compare

Patch filesize error case by normalizing media path 40e2170

v0.27.5-beta - Fix sidebar ordering bug

19 May 15:26
ac00ba3
Compare
Choose a tag to compare

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

19 May 13:53
0abc6b1
Compare
Choose a tag to compare

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

19 May 11:20
Compare
Choose a tag to compare

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

19 May 09:55
11fe780
Compare
Choose a tag to compare

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

Full Changelog: v0.27.1-beta...v0.27.2-beta