Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix #2007
  • Loading branch information
Juanjo Conti committed Sep 4, 2015
1 parent 2bd9ea5 commit 809fb62
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
28 changes: 9 additions & 19 deletions CHANGES.txt
@@ -1,3 +1,11 @@
New in master
=============

Bugfixes
--------

* Don't add stories to author pages (Issue #2007)

New in v7.7.0
=============

Expand Down Expand Up @@ -1545,22 +1553,4 @@ Features
* Image descriptions in galleries
* Image exclusion in galleries
* Special "draft" tag
* Pretty code listings ("code galleries")
* Page descriptions
* Easy theme tuning via Bootswatch
* Support for WebAssets bundles
* "Filters" for powerful file post-processing

Bugfixes
--------

* Improved HTML output
* Support multiple time formats in post metadata
* Slugify tag names for URLs
* Archive path and filename configurable
* Galleries sorted by date (supports EXIF)
* Rotate gallery thumbnails (EXIF)
* Tag feeds in tag pages
* Colorbox support in restructured text figures
* Fix for content displaying too wide
* Changelog
* Pretty code l
3 changes: 2 additions & 1 deletion nikola/plugins/task/authors.py
Expand Up @@ -292,5 +292,6 @@ def _posts_per_author(self):
if self.posts_per_author is None:
self.posts_per_author = defaultdict(list)
for post in self.site.timeline:
self.posts_per_author[post.author()].append(post)
if post.is_post:
self.posts_per_author[post.author()].append(post)
return self.posts_per_author

0 comments on commit 809fb62

Please sign in to comment.