Skip to content

Commit

Permalink
Small Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jseipp committed Nov 8, 2008
1 parent 9f22dfc commit 4402fa9
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 17 deletions.
35 changes: 18 additions & 17 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
==== 0.2.0 ====
- Tag Cloud
- Frame Icons in Multiple Resolutions
- After adding new category, directly add new entry
- Example Categories in Right Pane
- Case-insensitive search
- Statistics: Number of words, entries
==== Changelog ====

=== 0.2.0 (2008-11-07) ===
* Word Cloud
* Frame Icons in Multiple Resolutions
* After adding new category, directly add new entry
* Example Categories in Right Pane
* Case-insensitive search
* Statistics: Number of words, entries

==== 0.1.0 ====
- Initial Release
- Available Features
- Enter Day Content
- Add Day Categories
- (Live-) Search for Day Content
- Automatic saving
- Backup to zip archive
- Mark edited days
- Calendar Navigation
=== 0.1.0 (2008-09-23) ===
* Initial Release
* Available Features
* Enter Day Content
* Add Day Categories
* (Live-) Search for Day Content
* Automatic saving
* Backup to zip archive
* Mark edited days
* Calendar Navigation
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ include rednotebook/images/*.png
include rednotebook/images/redNotebookIcon/*.png
include CHANGELOG.txt
include README.txt
include MANIFEST.in
2 changes: 2 additions & 0 deletions rednotebook/gui/diaryGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,8 @@ def getHtmlDocFromWordCountDict(self, wordCountDict):
numberOfWords = 42
'''only take the longest words. If there are less words than n, len(longWords) words are returned'''
tagCloudWords = longWords[-numberOfWords:]
if len(tagCloudWords) < 1:
return '<html></html>'
minCount = tagCloudWords[0][1]
maxCount = tagCloudWords[-1][1]

Expand Down

0 comments on commit 4402fa9

Please sign in to comment.