Changes between Version 6 and Version 7 of Dev_ReleaseManagement


Ignore:
Timestamp:
Apr 19, 2009 12:10:31 PM (4 years ago)
Author:
thomasb
Comment:

Add instructions for compressing JavaScript? files

Legend:

Unmodified
Added
Removed
Modified
  • Dev_ReleaseManagement

    v6 v7  
    4444{{{ 
    4545svn export http://svn.roundcube.net/branches/release-x.y ./roundcubemail-x.y 
     46}}} 
     47 * the version naming should obviously match the branch/tag 
     48 * the folder name should include the version 
     49 
     50 * compress the !JavaScript files using [http://www.dojotoolkit.org/docs/shrinksafe Shrinksafe] 
     51{{{ 
     52cd roundcubemail-x.y/program/js/ 
     53for fn in {app,common,googiespell,list}; do mv $fn.js $fn.js.src && java -jar shrinksafe.jar $fn.js.src > $fn.js; done 
     54}}} 
     55 
     56 * create package archive 
     57{{{ 
    4658tar czf roundcubemail-x.y.tar.gz ./roundcubemail-x.y 
    4759md5_file roundcubemail-x.y.tar.gz 
    4860}}} 
    4961 
    50  * the version naming should obviously match the branch/tag 
    51  * the folder name should include the version 
    5262 * distribute the release package on !SourceForge 
    5363