var fDesc=new Array(); fDesc[0] = "Software is intended for developers who release sources of their applications in an archive. It automates zipping of software source codes for contributing them to sourceforge.net, codeproject.com and codeplex.com by setting custom filters (automate build, zipping in ui and ms build task).

Software automates creating of so called 'update packets': you can select folder and it will pack all modified and created files starting from specified date. It saves original folder structure. You can create update packets for small sites (consisting from html pages and powered by hands) and incremental backups.

Also software may be used when creating binary software zipped packages with use of 'archive design mode' feature:
you can bind any folder or file to any place in archive you want.

Main features:

- zipping files with exclude files and folders with masks and creation/modification time filters;
- design of archive contents from different dirs and files;
- scripting support, ms build support, nice gui for changing zip tasks;
- support for non-english file names
- template name for produced archive with supporting of increment, date and version autoinsertion
- freedom for modifications. If it does not suit you, you can easily improve it. Here's a production code quality so you can easily adopt it to your needs"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }