Fully adj to 103 (no OSK yet)

This commit is contained in:
2025-11-07 16:11:17 +01:00
parent 5ad5f16bdb
commit 9432dd1d84
7 changed files with 42 additions and 15 deletions
+5
View File
@@ -15,6 +15,11 @@ fs.writeFileSync("efb-html.patch", patch);
// JS
file1Contents = fs.readFileSync("EFB.index.js").toString();
file2Contents = fs.readFileSync("patched/EFB.index.js").toString();
patch = createTwoFilesPatch("EFB.index.js", "EFB.index.js", file1Contents, file2Contents);
fs.writeFileSync("efb-index-js.patch", patch);
file1Contents = fs.readFileSync("EFB.js").toString();
file2Contents = fs.readFileSync("patched/EFB.js").toString();
patch = createTwoFilesPatch("EFB.js", "EFB.js", file1Contents, file2Contents);