TomatoCMS 2.0.4

From TomatoCMS Documentation

Jump to: navigation, search

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

File:new_install_import_sample_data.png

  • Ability of uploading language package in *.zip which consist of language files for modules, widgets

File:new_upload_zip_file_language.png

Multimedia module

  • Water mask option when uploading photos

File:new_image_watermark.png

  • Image Editor with some basic actions as crop, rotate

File:new_image_editor.png

  • When preview an image, you can add note to it, and these notes will be managed at backend.

File:new_add_image_note.png

News module

  • Allow insert images that been uploaded before when add/edit an article.

File:new_insert_uploaded_file.png

  • Preview article

File:new_preview_feature.png

  • Create article revision and you can restore or delete it whenever you want

File:new_revisions_feature.png

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;
Personal tools