mirror of
https://github.com/OpenFusionProject/Client.git
synced 2024-11-10 16:50:06 +00:00
043bf219e7
**Formatting going forward** Variables: camelCase (capitalization of two letter abbreviations is OK, e.g. playerID) Classes: PascalCase CSS: kebab-case Files: kebab-case **Other miscellaneous changes** * The WebPlayer crashing as well as failing to load the config file are now fatal errors and will quit the app * Moved some style attributes from index.html into openfusion.css
29 lines
720 B
JavaScript
29 lines
720 B
JavaScript
const fs = require('fs');
|
|
const defaultDir = './dist/win-ia32-unpacked/resources/default_app'
|
|
const exeFile = './dist/win-ia32-unpacked/OpenFusionClient.exe'
|
|
|
|
exports.default = function() {
|
|
// remove leftover files from default electron app
|
|
fs.rm(defaultDir, { recursive: true }, (err) => {
|
|
if (err) {
|
|
throw err;
|
|
}
|
|
});
|
|
// patch executable for large address awareness
|
|
fs.open(exeFile, "r+", (err, fd) => {
|
|
if(!err) {
|
|
fs.write(
|
|
fd, new Uint8Array([0x22]), 0, 1, 0x166,
|
|
(err) => {
|
|
if(err) {
|
|
throw err;
|
|
}
|
|
fs.closeSync(fd);
|
|
}
|
|
);
|
|
} else {
|
|
throw err;
|
|
}
|
|
});
|
|
}
|