CHANGELOG ========== Version 0.6 ------------ - Removed extra tag (typo) in admin interface - Paginate administration pages for Articles, Subjects, Links, & Images - For pagination, I used the 'will_paginate' plugin, by Mislav Marohnić and PJ Hyett - http://errtheblog.com/post/929 - svn://errtheblog.com/svn/plugins/will_paginate - Fixed issue with subjects displaying non-posted articles - Static pages created (for things like 'About Me', currently they are sorted in alphabetical order) - Cleaned up the CSS files - Started working on "themes": - can set colors and background images by putting a "theme" in the CSS "themes" folder - can set themes in the site config - themes should be named "theme_[name].css", where name is your theme's name, which is also used in the Site Config Version 0.5 ------------ - Image scaling issue -- fixed - Text size on comments link -- fixed - (read on...) link issue -- fixed - "No Subject" Bug -- fixed - Now using the TextHelper helper module, by Henrik Nyh , for formatting truncated HTML. - Fixed some IE 7 quirks (I wasn't willing to write hacks; browsers needs to pass the acid test!) - Updated CSS files, and pulled the .article class into it's own file. Admin side now uses the main .article class to display articles. - Add the ability to preview and save articles without actually posting them - Allow articles to be "removed" without actually being deleted - Configuration Settings manageable from the administration interface & stored in the database Version 0.4 ------------ - Show how many comments have already been posted in main article listings - Administration Improvements - better color in tables - Fixed editing/deleting of comments through the administration interface and removed the comments_controller - Add picture uploads and allow choosing of an (optional) article specific image - Images are uploaded to the "uploaded_images" folder - Thumbnails and viewable images are created at upload - The ID is used to name the files - Restricted uploads to image/* content types - Updated .article CSS class - Articles are now given in brief format, and to read the full article you must go to the article's specific page Version 0.3 ------------ - Completely redesigned the administration interface, including the controllers - Switched authentication to authenticate_or_request_with_http_basic - When there are no articles for the current month, show only the last posted article. So if it's March, and the last posted article was Jan 2nd, show that. Version 0.2 ------------ - Made "article_by_subject" sort in reverse-chronological order. (done in the subject model) - Hover descriptions for Links and Subjects. (:title on link_to) - Each article can be shown on its own page by clicking on the title, or a "Comments" link. - Added (optional) article comments. Comments exist on the article's page (not a page with multiple articles) - Added (optional) email notification for comments. Email is sent to the owner's email address listed in the config.yml. - Sessions stored in a database table