-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] Support feed item images (#41)
* Add support for podcast-centered tags * Adding proper support for Enclosure and and Image tags, which didn't seem to generate properly (might have been a bug on my end but I'm not sure). * Enclosure.Length from string to int * Revert change from string to int for Enclosure length * Accidently changed err == to != for enclosure & author * Update README to reflect fork goals * List of tags to implement * fix RSS image when no Image is mentioned in the Feed * do not assume that a Link with a field Type is an Enclosure * expected tests * better handling of enclosures * fix package * Fixes as requested * Fix travis build error
- Loading branch information
Showing
7 changed files
with
66 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[Full iTunes list](https://help.apple.com/itc/podcasts_connect/#/itcb54353390) | ||
|
||
[Example of ideal iTunes RSS feed](https://help.apple.com/itc/podcasts_connect/#/itcbaf351599) | ||
|
||
``` | ||
<itunes:author> | ||
<itunes:block> | ||
<itunes:catergory> | ||
<itunes:image> | ||
<itunes:duration> | ||
<itunes:explicit> | ||
<itunes:isClosedCaptioned> | ||
<itunes:order> | ||
<itunes:complete> | ||
<itunes:new-feed-url> | ||
<itunes:owner> | ||
<itunes:subtitle> | ||
<itunes:summary> | ||
<language> | ||
``` |