ssn/src/index.ts

19 lines
628 B
TypeScript
Raw Normal View History

2018-06-21 14:17:21 +02:00
import * as config from './config';
//TODO: read arguments from command-line instead: process.argv
config.set('product', 'assets_swtor_en_us');
config.set('release', 120);
config.set('from', -1);
config.set('outputType', 'info');
//config.set('output', '/home/c3po/swtor-test/');
config.verify();
2018-06-21 12:24:53 +02:00
/*TODO:
- Configuration (which patch to download)
Need to install patch X for product Y, given install path Z and optionally previous version A already installed in path B.
- File download: .solidpkg, .zip, z01
- File verify
- Show output: list of .tor files etc. (and also which of the files have changed)
- File install
*/