TomatoCMS 2.0.4
From TomatoCMS Documentation
Contents |
What's new in TomatoCMS 2.0.4 version
We released TomatoCMS 2.0.4 version on 2nd, April, 2010 with following features.
You can download this version at TomatoCMS version 2.0.4.
Core module
- At Install wizard, we add feature that user can import sample data
- Ability of uploading language package in *.zip which consist of language files for modules, widgets
Multimedia module
- Water mask option when uploading photos
- Image Editor with some basic actions as crop, rotate
- When preview an image, you can add note to it, and these notes will be managed at backend.
News module
- Allow insert images that been uploaded before when add/edit an article.
- Preview article
- Create article revision and you can restore or delete it whenever you want
Upgrade database from 2.0.3 to 2.0.4
Let's upgrade your database following
CREATE TABLE IF NOT EXISTS `t_news_article_revision` ( `revision_id` int(11) NOT NULL auto_increment, `article_id` int(11) NOT NULL, `category_id` smallint(6) default NULL, `title` varchar(255) default NULL, `sub_title` varchar(255) default NULL, `slug` varchar(255) default NULL, `description` text, `content` mediumtext, `author` varchar(255) default NULL, `icons` varchar(255) default NULL, `created_date` datetime default NULL, `created_user_id` int(11) default NULL, `created_user_name` varchar(255) default NULL, PRIMARY KEY (`revision_id`), KEY `idx_article_id` (`article_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `t_multimedia_note` ( `note_id` int(10) unsigned NOT NULL auto_increment, `file_id` int(11) NOT NULL, `top` int(11) NOT NULL, `left` int(11) NOT NULL, `width` int(11) NOT NULL, `height` int(11) NOT NULL, `content` varchar(200) default NULL, `is_active` tinyint(1) default '0', `user_id` int(11) default NULL, `user_name` varchar(100) default NULL, `created_date` datetime NOT NULL, PRIMARY KEY (`note_id`), KEY `file_id` (`file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;








