Compare commits

...

2 Commits

5 changed files with 11 additions and 6 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## 0.2.18
## 0.2.19
- Added `short_feed` configuration flag to permanently disable returning the
full content of the articles in the RSS feed.

View File

@ -1 +1 @@
__version__ = '0.2.18'
__version__ = '0.2.19'

View File

@ -153,8 +153,13 @@ def rss_route():
<item>
<title>{title}</title>
<link>{base_link}{link}</link>
<pubDate>{published}</pubDate>
<description><![CDATA[{content}]]></description>
<pubDate>{published}</pubDate>"""
+ (
"<description><![CDATA[{content}]]></description>"
if not config.short_feed
else ""
)
+ """
<media:content medium="image" url="{base_link}{image}" width="200" height="150" />
</item>
""".format(

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.18
current_version = 0.2.19
commit = True
tag = True

View File

@ -11,7 +11,7 @@ def readfile(file):
setup(
name='madblog',
version='0.2.18',
version='0.2.19',
author='Fabio Manganiello',
author_email='info@fabiomanganiello.com',
description='A minimal platform for Markdown-based blogs',