diff --git a/NEWS b/NEWS index 117ed41..23d61da 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +1.5.4: October 9, 2008 + * Fixed a visual bug in which clicking up or down to reorder your notebooks + didn't display correctly. + 1.5.3: October 9, 2008 * Safari and Chrome web browsers are now supported (beta): * You can now create and end links. diff --git a/view/Front_page.py b/view/Front_page.py index 7c35df4..f5c4aa4 100644 --- a/view/Front_page.py +++ b/view/Front_page.py @@ -277,8 +277,8 @@ class Front_page( Product_page ): P( u""" Luminotes is a WYSIWYG personal wiki notebook for organizing your notes and ideas. - You don't have to use any special markup codes or install any software. You - simply start typing. + It's designed for note taking and note keeping without the hassle + of learning special markup codes. You simply start typing. """, ), Table( diff --git a/view/Rounded_div.py b/view/Rounded_div.py index a7c1350..f92b6f5 100644 --- a/view/Rounded_div.py +++ b/view/Rounded_div.py @@ -22,6 +22,6 @@ class Rounded_div( Div ): Div.__init__( self, div, - id = u"%s_wrapper" % image_name, + id = u"%s_wrapper" % ( kwargs.get( u"id" ) or image_name ), class_ = u"%s_color" % image_name, )