~jendrikseipp/rednotebook/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
== 1.10.1 (2015-04-14) ==
* When undoing a formatting action, only remove formatting, not the text (lp:1326606).
* Fix searching with enter for text with non-ASCII characters (lp:1430697).
* Fix filtering exports by tags containing non-ASCII characters (lp:1267263).
* Don't remove whitespace from old-style tags in autocomplete box (lp:1414603).
* Don't try to change spellchecking language if spellchecker is not set up (lp:1443818).
* Don't try to access files with wrong encoding (lp:1443818).

== 1.10 (2015-04-12) ==
* Write data to temporary files first to prevent corrupted month files.
* Add format button for monospace font. Automatically add the correct format for code blocks.
* Show warning for dates before 1900 (not supported by Python's datetime module).
* Fix undo/redo.
* Don't add unneeded newlines around titles and code.

== 1.9.0 (2014-12-27) ==
* Add #tags to cloud ignore list to remove them from the tag cloud (thanks Przemysław Buczkowski).
* Remove option to start RedNotebook minimized.
* Do not remove menu bar in fullscreen mode (lp:1400356).
* Allow exiting fullscreen mode with ESC key.
* Only allow comment signs (#) at the beginning of a line in the config file.
* Fix reading configuration files.

== 1.8.1 (2014-08-03) ==
* Do not show new version dialog if latest version cannot be determined (lp:1324126).
* Fix date formatting for invalid locale encodings.
* Add necessary library files for spell-checking on Windows (lp:1331876).

== 1.8.0 (2013-12-12) ==
* Add font selection for edit mode (Philip Akesson).
* Allow changing preview and cloud font in preferences.
* Only allow opening RedNotebook minimized on Windows since other systems may lack a system tray.
* Fix: Display tags starting with "SEP" in preview (lp:1255582).
* Write scripts to cross-compile RedNotebook Windows exe and installer on Linux.

== 1.7.3 (2013-11-10) ==
* Jump to a specific date on startup with "--date 2013-10-31" on the commandline (Rob Norris).
* Display current date in the title bar (Rob Norris).
* Support inserting multiple pictures in one step.
* Add DejaVu Sans as font fallback for clouds and preview.
* Fix setting last image directory for insert dialog.
* Only allow exporting selected text if we are in edit mode (lp:1221792).

== 1.7.2 (2013-06-28) ==
* Show error if saving fails due to a directory not being created.
* Ignore hashtags starting with more than one #.
* Fix: Allow inserting files and pictures from the "recently used" section (lp:1195759).

== 1.7.1 (2013-03-01) ==
* Fix: Insert spellchecking correction in the correct position (LP:1137925).

== 1.7.0 (2013-02-28) ==
* Allow filtering exported days by tags (Alistair Marshall).
* Add option to export only the currently selected text (Alistair Marshall).
* Move spellcheck option from preferences to edit menu and add F7 shortcut (Alistair Marshall).
* Enable spellchecking on Windows. See help for adding custom dictionaries.
* Better error message for invalid markup.
* Show warning if no directory is selected before clicking the "Open" button when choosing a journal directory.
* Gracefully handle BadStatusLines when checking for new versions.
* Do not try to set file permissions on Windows where they are unavailable.
* Fix hide-from-cloud for words containing backslashes (LP:1131412).
* Fix relative file links on Windows.
* Code: Switch from optparse to argparse (Alistair Marshall).

== 1.6.6 (2013-01-21) ==
* Edit templates in RedNotebook directly. Preview and use the Insert and Format toolbar menus before inserting a template.
* Support relative image links like [""my_pic"".jpg].
* Add Ctrl+Return shortcut for adding manual linebreaks.
* Let all toolbar menus always open the menu before performing an action.
* Change Go-To-Today shortcut to Alt+Home (Ctrl+Home moves cursor to the start of the text).
* Do not allow choosing an empty name for templates.
* Do not parse #include as a hashtag.
* Add info about network drives to help text.
* Fix help text about links to local directories.
* Fix: Let categories pane use new infobar notifications (LP:1098625).

== 1.6.5 (2012-12-27) ==
* Add menu item for clearing the text format.
* Add toolbar menus "Insert" and "Format" to main menu for better accessibility and HUD integration.
* Only show keyboard shortcuts in main menu, not in toolbar menus.
* Use selected text as link name when a new link is inserted.
* When an image or file is inserted, use selected text as the name of the link.
* Format selected text as header when a header is inserted.
* Convert selected text to a list when a list is inserted.
* Select title after it has been inserted to allow for easy editing.
* Change file permissions so that journal files are only readable by the user.
* Windows: Restore slider positions after opening RedNotebook from the tray.
* Windows: Support non-ascii installation paths.

== 1.6.4 (2012-12-22) ==
* Never include previous RedNotebook backups in new backups.
* Add strikethrough shortcut Ctrl+K.
* By default don't switch between edit and preview mode automatically.
* Add experimental support for irc protocol.

== 1.6.3 (2012-12-06) ==
* Fix: Don't interpret URLs with non-empty paths as local links.

== 1.6.2 (2012-11-18) ==
* Add option for automatically switching between edit and preview mode to preferences.
* Since debian doesn't have a python2 symlink, try to run python2.7 and python2.6 in the run script.
* Use PNG image in about dialog (SVG support is broken in Windows version).

== 1.6.1 (2012-11-11) ==
* Allow specifying the width when inserting an image.
* Add relative links: Relative paths [myfile image.jpg] is automatically transformed to /path/to/journal/image.jpg.
* Use smarter regular expression for finding hashtags in the text.
* Give focus to link box when the link dialog opens.
* Hide tag panel by default.
* Adapt introductory and help texts for hashtags.
* Break search results at newlines.
* Fix: When searching for multiple tags, only add a single result for every hit.

== 1.6.0 (2012-10-31) ==
* Inline #hashtagging: Directly add hashtags like #Movies, #my_project in the main text.
* Highlight #hashtags in red.
* Include # for tags in tag cloud to be consistent with the hashtags.
* Change to edit/preview mode if text is missing/present automatically.
* Change to edit mode when double-clicked into preview.
* Detach model from combobox when updating the tags to make inserting a new tag faster.
* Fix searching for dates.
* Fix inserting and editing templates with unicode names.
* Fix opening and creating journals (lp:1068655)
* Use apport (If a crash occurs on Linux, an automatic bug report is prepared, but not submitted)
* Do not allow using $HOME as a journal directory.
* Do not let error notifications blink.
* For Journal->New and Journal->Save-As: Only allow using empty directories.
* For Journal->Open: Only allow using directories with at least one month file.
* Use InfoBars for nicer inline notifications about errors.
* Enable finishing link dialog with hitting ENTER.
* Disable insert (Ctrl+V) and cut (Ctrl+X) shortcuts in preview mode.
* Add more shortcuts in Journal menu: Export (Ctrl+E), Backup and Statistics (Alt+letter).
* Update translations.

== 1.5.0 (12-07-19) ==
* Use new logo redesigned by Ciaran.
* Remember possible undo/redo actions for each day separately.
* Turn all entries of old "Tags" categories into tags without entries at startup.
* Suggest last tag when a new tag is added.
* When suggesting to use the last tag, leave focus on the tag.
* Enable copy menu item in preview mode. (LP:834473)
* Grey out cut and paste menu items in preview mode.
* Only allow hiding words from the cloud, not the tags.
* Add shortcut (Ctrl+Home) for "Go to Today"
* Fix undo for tags.
* Fix: Remove special characters in template names before displaying them.
* Exports: Make tag lists scrollable and sort the available tags alphabetically.
* Install .mo files (translations) in the standard directories under Linux.
* Drop support for Python 2.5. This means that we now support Python 2.6 and 2.7.
* Windows: Update libraries in installer to gtk+ 2.24 and python 2.7.
* Windows: Correctly show italics in preview.
* OSX: Make the _() function available even if gettext is not working.
* Update translations.

== 1.4.0 (12-04-01) ==
* Search: If a search contains a hashtag (e.g. #Work or #Movies), only days
  with all of those tags will be searched. This means you can e.g. search for
  "project-xyz" only in the days tagged with "Work" with the query
  "#Work project-xyz".
* Search for combinations of tags (e.g. #magazine #linux)
* Search: If the query only contains a single hashtag (e.g. #Movies), a list of
  all subtags (the names of the movies) is shown.
* Search: Automatically scroll to found text in edit mode
* Split tag and word clouds
* Show tag and word cloud only if there are any tags and words respectively
* Remove spaces from multi-word tags during search and in clouds
* Auto-complete tags in search
* Always include all tags regardless of their frequency in the cloud
* Exports: Correctly set the appropriate extension for each export type
* Exports: Always add a title for LaTeX exports
* Fix: Correctly parse configuration values containing ='s
* Fix: Paths returned from file and folder choosers must be converted to unicode
* Fix: Correctly redirect error output into the logfile on Windows

== 1.3.0 (12-01-24) ==
* Let tags be categories without entries. This greatly simplifies and in fact
  unifies tags and categories.
* Unify clouds and search -> Show the search bar above the clouds
  When a search is made, substitute the word cloud with the search results.
* Apply styling for thick horizontal lines
  - Thin line:  --------------------
  - Thick line: ====================
* Apply formatting only once if a format button is clicked multiple times
* Allow "Close to tray" only on Windows as most modern Linux distros don't have a tray anymore (lp:902228)
  If you still want the tray icon, set closeToTray=1 in the configuration file.
* Make journal saving more than twice as fast by using libyaml.
* Change Ctrl-PageUp(Down) directions to be more intuitive
* Update and revise help text
* Fix: utf-8 special chars not displayed correctly in html export for firefox (LP:910094)
* Fix: Do not abort if a wrong regex is entered
* Fix: Correctly highlight all picture formats in edit mode
* Fix: When the format button is clicked and a tag is selected, format it instead of the editor pane
* Write month only if changes are actually made (LP:871730)
* Call categories tags in more places
* Print PDF export path after export
* Do not warn if second instance is suspected (too many false-positives)
* Updated translations

== 1.2.0 (11-10-05) ==
* Let the "Back" and "Forward" button jump over empty days
* Allow wildcards (*,.,?) in cloud black/white lists ("altr." hides altro, altra, etc.)
* Add "Export currently visible day" option in export assistant
* By default select the time range from today to today in the export wizard (LP:834489)
* Show warning when second RedNotebook instance is started to prevent data loss (LP:771396)
* Add option to set the date format for exports. An empty field removes dates from exports.
* Remember scrollbar and cursor positions when changing between days and edit and preview mode
* Allow double backslashes (\\) in filenames (e.g. for UNC paths)
* Use Ubuntu font in editor, preview and cloud if it's available
* Remember last export and backup locations
* Show the most recent entries at the top of the search list by default
* Search in annotations as well
* Use auto-completion for all category entries
* Mention the name of the day in weekday templates
* Allow linebreaks (\\) only at the end of lines
* Do not write empty month files to disk
* Remove "Delete Entry" button (Use the context menu or the delete key instead)
* Add tooltips for category buttons
* Always keep categories sorted in search and annotations drop-down menus
* Allow markup for links in categories (--http://mypage.com--) (LP:782697)
* Escape regular expression syntax in searches (*, +, etc.)
* Use a better icon for Annotate (Edit)
* Add more markup examples to templates help text
* Fix: Txt2tags highlighting should not allow spaces between format markup and text
* Fix: Do not use str.capitalize() for fonts in txt2tags.py to support turkish locales (LP:841698)
* Fix on Windows: Correctly open local links with whitespace (LP:824420)
* Let "Get help online" point to RedNotebook's answers section at launchpad
* Code optimizations
  * Remove old cloud implementation
  * Remove external module htmltextview.py
  * Remove dead unicode code
  * Remove obsolete KeepNote source files
  * Remove unnecessary imports
* Updated translations

== 1.1.8 (11-08-08) ==
* Fix: Abort startup if yaml file cannot be read to avoid losing data
* Updated translations

== 1.1.7 (11-07-13) ==
* Fix: Chinese characters are not correctly rendered in preview (LP:731273)
* Fix: Screen position not correctly remembered when opened from system tray (LP:804792)
* Fix: Date is not inserted if default encoding can not be determined
* Fix: Windows executable has no icon on Windows 7
* Windows installer: Update to GTK+-2.16.6
* Code: Use smarter internationalization code from elib.intl
* Updated translations

== 1.1.6 (11-05-11) ==
* Fix date encoding (LP:775269)
* Some translations updated

== 1.1.5 (11-05-03) ==
* Remove "RedNotebook" title in exports
* Make templates translatable
* Fix: Inserted dates always shows the time 00:00h (LP:744624)
* Mention "--record installed-files" setup.py's option for remembering
  installed files in README

== 1.1.4 (11-03-26) ===
* Add "phone call" and "personal" templates
* Fix: Application crashes while resetting last position (LP:728466)
* Fix: Editing a category entry that contains a \\ removes the new line symbol (LP:719830)
* Fix: Introductory text is not translated
* Fix: Properly convert dates to unicode
* When a format (bold, etc.) is applied with no text selected, add whitespace,
  not descriptive text
* Add a tooltip for the edit button
* Improve introductory text
* Improve help text
* Do not refer to annotations as "nodes" but as "entries"
* Translate the word "Categories" in exports
* In statistics window use "Selected Day" instead of "Current Day"
* Cleanup GUI glade file
* Many translations updated

=== 1.1.3 (11-03-02) ===
* Remember window position from last session
* Restore window position when returning from tray
* Let the sub-windows be displayed relative to the main screen
* After searching change to date with single click instead of double-click
* Add useWebkit flag in configuration file
  Can be set to 0 if webkit causes problems e.g. for Chinese fonts
* Fix: Special characters inflate cloud black-/whitelist
* Fix: Insertion of templates (LP:696205)
* Fix: Do not load backup files accidentally (LP:705260)
* Fix: Preferences window can't be opened (LP:696186)
* Windows: Fix opening linked files with umlauts or other special characters
* Code: Make pywebkitgtk an explicit requirement

=== 1.1.2 (10-12-26) ===
* Add fullscreen mode (F11)
* Highlight all found occurences of the searched word (LP:614353)
* Highlight mixed markups (**__Bold underline__**)
* Highlight structured headers (=Part=, ==Subpart==, ===Section===, ====Subsection====, =====Subsubsection=====)
* Document structured headers
* Highlight ``, "", ''
* Write documentation about ``, "", ''
* Let the preview and edit button have the same size
* Fix: Correctly highlight lists (LP:622456)
* Fix: Do not set maximized to True when sending RedNotebook to the tray (LP:657421)
* Fix: Add Ctrl-P shortcut for edit button (LP:685609)
* Fix: Add "\" to the list of ignored chars for word clouds
* Fix: Escape characters before adding results to the search list
* Fix: Local links with whitespace in latex
* Windows: Fix opening linked files
* Windows: Do not center window to prevent alignment issues
* Windows: Fix image preview (LP:663944)
* Internal: Replace tabs by whitespace in source code
* Many translations updated

=== 1.1.1 (10-08-21) ===
* Let user delete category with 'DELETE' key (LP:608717)
* Sort categories alphabetically (LP:612859)
* Fix: After clicking "Change the text" on an annotation, directly edit it (LP:612861)
* Fix: Journal -> _Journal in menu
* Fix: Do not clear entry when category is changed in new-entry dialog
* Fix: restore left divider position
* Fix: Use rednotebook website for retrieving newest version information (LP:621975)
* Windows: Shrink installer size
* Windows: Update gtk libs
* Windows: New theme
* Windows: New icons
* New translations:
  * English (United Kingdom)
  * Norwegian Bokmal
* Many translations updated

=== 1.1.0 (10-08-03) ===
* When searching for text, search in dates too (Search for 2010-05 displays all entries of May 2010)
* Improve checking for new version (Show version numbers)
* Save last selected tab (Search/Clouds) (LP:590483)
* Save journal files as readable unicode
* Save journal files without python directives
* Let the Preview and the Edit button always have the same size
* Get rid of warnings caused by older webkit versions
* Use webkit on Windows
* Use webkit by default if installed
* Get rid of CamelCase in sourcecode
* Open external files asynchronously with subprocess.Popen from preview
* Fix: Correctly highlight multiple links and images on one line
* Fix: Months that have been cleared of all text are now rewritten to disk
* Fix: Allow ampersands in annotation links (LP:612490)
* Rewrite export assistant code
* Much more code rewritten or restructured
* Bundle msvcr dll in windows installer (Fixes Error 14001)
* New translations:
  * Chinese (Traditional)
* Many translations updated

=== 1.0.0 (10-06-23) ===
* Describe how to add latex math formulas and custom html tags in help
* Fix crash on windows when data and program live on different drives in portable mode (LP:581646)
* Fix display of italic text in edit mode
* Fix inserting templates on Windows
* New Translations:
  * Faroese

=== 0.9.5 (10-05-11) ===
* Show week numbers in calendar (edit weekNumbers in config file)
* Sort items in configuration.cfg
* Automatically put cursor into search field, when search tab is opened
* Do not translate log
* Fix export error on Windows (LP:575999)
* Get rid of PangoWarnings on Windows
* Get rid of Statusbar deprecation message
* New recommended dependency: python-chardet

=== 0.9.4 (10-04-29) ===
* Allow dragging of files and pictures into RedNotebook (Linux only)
* Save data dir relative to application dir in portable mode
* Remember if window was maximized
* Make webkit the default preview backend
* Improve documentation (Synchronization, Portable mode)
* Improve list markup highlighting
* Only add help content at first startup (Closes LP:550814)
* Live highlighting of searched words in text
* Scroll to found word at search
* Make user directory configurable in default.cfg
* Windows:
  * Fully translate Windows version
  * Add more languages to the Windows installer
  * Fix picture export on Windows
  * Hide PDF export button on windows (pywebkitgtk not available)
  * Portable mode has been improved
  * Let users insert templates again (Closes LP:538391)
* New translations:
  * Brazilian Portuguese
* Many translations updated

=== 0.9.3 (10-02-23) ===
* Add graphical option to select webkit for previews
* If available use webkit for clouds
* Add context menu to the webkit clouds for hiding words
* Change "Stricken" to "Strikethrough"
* Add locale functions for complete translations
* Change xhtml extension to .html
* Improve documentation
* New translations:
  * Italian
* Many translations updated


=== 0.9.2 (10-01-21) ===
* Use webkit for direct PDF export
* Remove pdflatex (texlive) package suggestion
* Improve menu layout
* Add "Report A Problem" button
* Add "Translate RedNotebook" button
* Add "Get Help Online" button
* Handle opening of links externally in webkit preview
* Fix spellchecking
* Fix linebreaks for XHTML
* Improve documentation
* New Translations:
  * Spanish
* Updated Translations:
  * German
  * Indonesian
  * Hebrew
  * Malay
  * Czech
  * Polish
  * Dutch
  * Chinese (Simplified)

=== 0.9.1 (09-12-27) ===
* Make markup highlighting much faster
* Allow using webkit for previews (In the config file, set useWebkit to 1)
* Make pywebkitgtk (python-webkit) an optional, but highly recommended dependency
* Make welcome text translatable
* Add comments for translators
* Make help available online

=== 0.9.0 (09-12-17) ===
* Markup Highlighting (a little WYSIWYG/RTF)
* New translations:
  * Indonesian
  * Asturian
  * Ukrainian
  * Danish
* Updated translations:
  * All (Yay, thanks!)

=== 0.8.9 (09-10-04) ===
* Save your journal to a remote server (SSH, FTP and WebDAV support)
* Do not load backup files in data directory
* Fix "Save As"
* New translations:
  * Dutch
  * Polish

=== 0.8.8 (09-10-23) ===
* Internationalization:
 * RedNotebook is now available in:
   * German
   * Czech
   * Hebrew
   * Malay
   * Romanian
   * Russian
   * Simplified Chinese
   * French
 * Translations are partly available for:
   * Brazilian Portuguese
   * Croatian
   * Italian
   * Dutch
   * Belarusian
 * New translations can be made at launchpad.net
* Add "Start minimized to tray" command line parameter
* Add cloud words white list for short words

=== 0.8.7 (2009-09-27) ===
* Only save content and config when they have been changed
* Make the UI easier to understand
  * provide more tooltips
* Update help
  * explain how to use Categories as Todo items there
  * make help topic centric
  * cleanup template help
* Fix "Insert this Weekday's Template"

=== 0.8.6.1 (2009-09-04) ===
* Fix duplicate naming bug (LP:424550)

=== 0.8.6 (2009-09-04) ===
* Added an optional tray icon
  (Closing the window sends RedNotebook to the system tray)
* The menubar has been rewritten to support gtk+ 2.14
* Fix "add example content"
* Fix calendar issue (again)
* Fix crash on Hardy

=== 0.8.5 (2009-08-29) ===
* Spell Checking (not for Windows)
  (Requires gtkspell for python. This is included in the python-gnome2-extras package)
* When a template is inserted, every occurence of "$date$" is converted to the current date
  (Set date format in preferences)
* Open a specified journal from the command line
  (execute "rednotebook -h" for instructions)
* Autocomplete category entries
* Wrap lines in categories view
* When a category is selected on the right and you add a new category entry,
  set focus directly in entry field
* Fix: Allow underscores and whitespace in filenames for latex (LP:414588)
* Fix: Reset min gtk version to 2.14

=== 0.8.4 (2009-08-13) ===
* Add Undu and Redo for Categories
  (Hit Ctrl-Z to restore a deleted category entry)
* Hide cloud words with simple right-click
* Open pictures by double-clicking them (in preview)
* Statistics: Show number of distinct words
* Category items can now be formatted bold, italic, underlined, stricken
  (Just put **, //, __ or -- around the entry text)
* Format category entries with the "Format" button
  (Select a node on the right and apply a format from the "Format" menu)
* Add "Stricken" format button
  (Useful e.g. for completed todo items)
* New Shortcuts:
  * Ctrl-N: Add a new entry to a category
  * Ctrl-T: Tag the current day
* You can now use TAB to navigate in the "New entry dialog"
* Switch from libglade to GtkBuilder (the python-glade dep can be dropped)
* Fix undo and redo for main text

=== 0.8.3 (2009-08-07) ===
* New statistics dialog with daily word count. Shows number of words, lines, and chars
* Fill some days of the journal with solutions of common question at first startup
* Add option to restore that example content. It will be placed after the last edited day
* Add "Autostart RedNotebook" option
  * Linux: Option in Program
  * Win: Installer Option
* Format category entries in search window
* Finish a new category entry by hitting ENTER
* Put the initial focus in the text window for direct typing (LP:406450)
* Fix calendar warning
* Use glib.timeout_add_seconds for automatic saving for less energy consumption on laptops
* Highlight searched words in preview too

=== 0.8.2 (2009-07-28) ===
* Blacklist for clouds in GUI
* Let the search function highlight found words
* Fix line breaks for exports
* Fix opening files on Mac
* Add little section about comments to Help text
* Fix size for insert icon by using a stock icon
* Do not use small toolbar icon sizes (LP:405991)

=== 0.8.1 (2009-07-24) ===
* make font size configurable (under preferences)
* Add line breaks (under insert menu)
* Add a whitespace char between adjacent lines
* Fix: Win Version should use smaller insert-image icon (16x16)

=== 0.8.0 (2009-07-22) ===
* Graphical preferences dialog (Under "Edit" menu)
* Make date/time format configurable in the preferences dialog
* Fix unicode bugs

=== 0.7.6 (2009-07-15) ===
* Undu and redo for the main text
* Use libyaml for faster loading and dumping of files (Big journals now open ~10 times faster)
* Speed improvements for navigation between days
* Add information for Latex to PDF conversion
* Shortcut for turning on/off the preview: Ctrl+P
* New entry in Edit menu: "Find"
* Append error messages to the logfile
* Use new svn version of txt2tags
* Fix URL and file link insertion

=== 0.7.5 (2009-06-30) ===
* Buttons for bold, italic, underlined text
* Fixed hardy bug: yaml 3.05 does not have __version__ attribute
* Removed shebangs from python modules (Closes LP:393602)

=== 0.7.4 (2009-06-25) ===
* Create ~/.rednotebook dir before logging is initialized (Closes LP:392235)
* Set native theme for windows version

=== 0.7.3 (2009-06-21) ===
* Only save months that have been visited for a faster exit
* Improve logging
* Automatically create a logfile for debugging
* Fix: Check if directory exists before opening it

=== 0.7.2 (2009-05-25) ===
* Choose a folder for journal (Save-As)
* Have more than one journal (New Journal)
* Open existing journals (Open Journal)

=== 0.7.1 (2009-05-21) ===
* Open and create template files from within RedNotebook
* Live update of template list
* Fix opening files for Win

=== 0.7.0 (2009-05-19) ===
* Arbitrarily named templates
* Enable copy/paste in categories edit box
* Live update of clouds after categories have been edited

=== 0.6.9 (2009-05-05) ===
* Reenable stricken text
* Select individual categories to export
* Export only text, or only categories, or both
* Handle local file opening
  Double-clicks on links in the preview open the link with the preferred app
* Categories can be edited with right mouse clicks:
  Click on an existing category then right mouse click to add a new entry
* Link template files
* Make toolbars equally sized
* Delete GTKMozembed cruft
  * Delete mozembed.py module (originally taken from listen-project)
* Delete markup cruft

=== 0.6.8 (2009-05-03) ===
* Drop GTKMozembed dependency
  * Add keepnote modules
  * remove numbered lists
* Minor Bugfixes

=== 0.6.7 (2009-04-21) ===
* Make deb package Python 2.6 compatible
* Add yaml-parser error handling
* Fix inserting file links containing whitespace

=== 0.6.6 (2009-04-07) ===
* Fix: A modified category and tag name is not modified in the category drop
  down list until you reload the application.
* Fix: Cloud words should have the same color as text words (LP:353738)

=== 0.6.5 (2009-04-01) ===
* Ignore list for clouds (Mark word(s) in cloud, right-click and select "Hide")
* Keyboard shortcuts for inserting pictures, files, links and the date

=== 0.6.4 (2009-03-29) ===
* Easier Tagging (Added tag button)
* New-Entry-Dialog: Show previous tags in drop-down menu when "Tags" is selected as category
* New-Entry-Dialog: Only make a new entry submittable, if text has been entered
* Shortcuts to navigate between days (<Ctrl> + PageUp, <Ctrl> + PageDown)
* Check xulrunner paths at startup
* Made Windows installer

=== 0.6.3 (2009-03-21) ===
* Add an option to insert the current time and date
* Save divider positions and frame size
* Add new statistics
* Disable GTKMozembed automatically if RedNotebook crashes

=== 0.6.2 (2009-03-17) ===
* Content is automatically saved every ten minutes
* Fix Debian/Jaunty Bug (LP:340101)

=== 0.6.1 (2009-03-03) ===
* New types to insert: Bullet List, Numbered List, Title, Line

=== 0.6.0 (2009-02-25) ===
* Allow linking of files
* Allow embedding images
* Links and mail addresses are recognized automatically
* Adding named links to websites is now possible
* Better documentation

=== 0.5.6 (2009-02-23) ===
* Disable automatic update checking
* Add "Check for new version" menu entry
* Add config file and tips for packagers
* Add 'Disable GTKMozembed' option to config files
* Add copyright notice to source files
* Add LICENSE file

=== 0.5.5 (2009-02-12) ===
* Make GTKMozembed optional
* Use preview in browser if GTKMozembed not installed
* Add browser navigation buttons to preview
* Remove gtkhtml2 dependency
* Add name of day to title in preview and export

=== 0.5.4 (2009-02-02) ===
* RedNotebook now checks for new version when it is started
* The configuration is saved in a file when the program exits
* The Fedora gtkmozembed bug has been fixed (LP:320492)

=== 0.5.3 (2009-01-30) ===
* Word, tag and category clouds
* Catch abnormal aborts and save content to disk

=== 0.5.2 (2009-01-27) ===
* The Export Wizard is back again (Thanks Alexandre)
* It is now possible to search for text, categories and tags

=== 0.5.1 (2009-01-21) ===
* Days can be tagged
* Formatting text is possible
* Bugfixes

=== 0.5.0 (2009-01-19) ===
* The GUI has been ported to PyGTK
* Almost all of the features have been adapted to the new interface
* A Preview Tab for a day's content was added

=== 0.4.1 (2009-01-15) ===
* Do not export empty days (Fixes Bug #314385)
* Fix search for single digit months (Fixes Bug #312988)

=== 0.4.0 (2008-12-18) ===
* Export Functionality added: Text, HTML, Latex
* Use of Configuration Files

=== 0.3.0 (2008-11-29) ===
* Template entries for each weekday
* Undo & Redo
  * Ubuntu Main Menu Entry
* Improved Documentation

=== 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 (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