Changeset 5615 in subversion
- Timestamp:
- Dec 14, 2011 1:25:44 PM (18 months ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 3 edited
-
CHANGELOG (modified) (3 diffs)
-
SQL/sqlite.initial.sql (modified) (1 diff)
-
SQL/sqlite.update.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/CHANGELOG
r5589 r5615 2 2 =========================== 3 3 4 - Make Roundcube render the Email Standards Project Acid Test correctly5 4 - Deprecate $DB, $USER, $IMAP global variables, Use $RCMAIL instead 6 5 - Add option to set default font for HTML message (#1484137) 7 6 - Fix issues with big memory allocation of IMAP results 7 - Prevent from memory_limit exceeding when trying to parse big messages bodies (#1487424) 8 - Add possibility to add SASL mechanisms for SMTP in smtp_connect hook (#1487937) 9 - Mark (with different color) folders with recent messages (#1486234) 10 - TinyMCE updated to 3.4.6 11 12 RELEASE 0.7 13 ----------- 14 - Make Roundcube render the Email Standards Project Acid Test correctly 8 15 - Replace prompt() with jQuery UI dialog (#1485135) 9 16 - Fix navigation in messages search results … … 19 26 - Fix so TEXT key will remove all HEADER keys in IMAP SEARCH (#1488208) 20 27 - Fix handling contact photo url with https:// prefix (#1488202) 21 - Prevent from memory_limit exceeding when trying to parse big messages bodies (#1487424)22 - Add possibility to add SASL mechanisms for SMTP in smtp_connect hook (#1487937)23 - Mark (with different color) folders with recent messages (#1486234)24 28 - Fix possible infinite redirect on attachment preview (#1488199) 25 29 - Improved clickjacking protection for browsers which don't support X-Frame-Options headers … … 28 32 - Fixed bug where session ID's length was limited to 40 characters (#1488196) 29 33 - Added About tab in Settings 30 - TinyMCE: 31 - updated to 3.4.6 32 - security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore) 34 - TinyMCE security issue: removed moxieplayer (embedding flv and mp4 is not supported anymore) 33 35 34 36 RELEASE 0.7-beta -
trunk/roundcubemail/SQL/sqlite.initial.sql
r5460 r5615 148 148 ); 149 149 150 CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name);150 CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name); 151 151 152 152 -- -------------------------------------------------------- -
trunk/roundcubemail/SQL/sqlite.update.sql
r5468 r5615 247 247 ); 248 248 249 CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name);249 CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name); 250 250 251 251 DROP TABLE messages;
Note: See TracChangeset
for help on using the changeset viewer.
