ssn/src/installPatch.ts

15 lines
527 B
TypeScript
Raw Normal View History

2018-06-22 13:35:25 +02:00
import getPatchmanifest from './ssn/getPatchmanifest';
2018-06-21 23:06:34 +02:00
import getSolidpkg from './ssn/getSolidpkg';
(async () => {
2018-06-22 13:43:17 +02:00
//----- PATCHMANIFEST -----
//.patchmanifest files contain a single XML file called "manifest.xml"
2018-06-23 20:20:03 +02:00
const patchmanifestJson = await getPatchmanifest('assets_swtor_de_de');
console.log(patchmanifestJson);
2018-06-22 13:43:17 +02:00
//----- SOLIDPKG -----
//.solidpkg files contain a single Bencode file called "metafile.solid"
const solidFile = await getSolidpkg('assets_swtor_de_de', -1, 0);
console.log(solidFile);
})();