Releases: mattstratton/castanet
1.14.2
1.14.2
1.14.1
Fixed bugs:
- Fixing RSS feed publishing bug #335 (chrisreddington)
1.14.0
Lots of improvements in this release! Thanks to @chrisreddington for all the work.
Blog post support
You can now add blog posts! Be sure to check out the REFERENCE.md
file for documentation. We will be working to make them look prettier, but they work now!
Support for guest/host pronouns
If you set preferred pronouns for guests and hosts, they will now display on the associated pages. More styling improvements coming!
More customization options
You can set episode numbers now, which can be used in a format to make the episode display titles look fancier. Check out REFERENCE.md
for details.
Implemented enhancements:
- [ENHANCEMENT] - Replace Google Play Music with Google Podcasts #328
- [ENHANCEMENT] - Add support for preferred pronouns for guest and host #274
- Feed improvements #247
- Add Spotify subscribe button information to REFERENCE.md file #226
- Allow for customization of titles in feed #168
- Add episode numbers as an option #67
- [ENHANCEMENT] Add support for blog posts #19
- Add episode numbers/prefix in RSS and Relevant Titles/Links [Attempt #2] #322 (chrisreddington)
- Initial implementation for pronouns #312 (chrisreddington)
- Create skeleton of blog feature #310 (mattstratton)
Fixed bugs:
- [BUG] - <itunes:explicit> tag should be true/false not yes/no #326
- Update explicit tags for proper Apple/Google format #327 (chrisreddington)
1.13.0
You can now display the next upcoming episode on the homepage! This works with both grid
and row
layouts.
For this to work, you will need to be using the Upcoming Epsiodes feature. You then toggle this on and off with show_next_upcoming = "true"
in your config file. Thanks to @chrisreddington for the work on this feature!
Implemented enhancements:
- Add Functionality: Show next upcoming episode #309 (chrisreddington)
1.12.1
1.12.0
This release adds support for various Hugo taxonomies, specifically tags, series, and categories.
If you would like to use this feature, you'll need to add the following to your config.toml
for any of the taxonomies you want to use, for example:
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
(You don't have to use all three of these, but any you do want to use, have to be specified here)
Then, simply add the following frontmatter to your episodes:
categories = ["Virtual Reality"]
series = ["Modern Tech Trends"]
tags = ["VR", "Technology"]
Thanks to chrisreddington for this great new feature!
Implemented enhancements:
- [ENHANCEMENT] - Add taxonomies for Tags, Series and Categories #306
- [ENHANCEMENT] Add episode tags support. #245
- Add Category, Tag and Series taxonomies to theme #307 (chrisreddington)
1.11.2
Fixed bugs:
- Upcoming episodes should be sorted from soonest to furthest away #302 (chrisreddington)
1.11.1
Small release that updates a few JS packages
1.11.0
This release adds the capability to publish "upcoming" episodes for the future! Check out the REFERENCE.md for documentation on this new feature.
Implemented enhancements:
- show future episodes #257