mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-15 16:34:51 +01:00
More saves, launcher tweaks
Added config at char select screen Transmog saving and loading (unlocks are not yet tackled and it is global rn) Sigil saving (can break, initial pass of save) Null compression and decompression functions. First pass of the diff save function. Disabled stamp cards
This commit is contained in:
@@ -66,7 +66,9 @@
|
||||
<button id="newButton" class="btn btn-primary">New</button>
|
||||
<button id="deleteButton" class="btn btn-primary">Delete</button>
|
||||
-->
|
||||
<button id="btn_config" class="btn btn-primary">Config</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -94,5 +94,13 @@ $(function() {
|
||||
window.external.exitLauncher();
|
||||
}, 500);
|
||||
});
|
||||
|
||||
$("#btn_config").click(function() {
|
||||
try{
|
||||
window.external.openMhlConfig();
|
||||
} catch(e){
|
||||
createErrorAlert("Error on openMhlConfig: " + e);
|
||||
}
|
||||
})
|
||||
|
||||
});
|
||||
|
||||
@@ -36,13 +36,10 @@ $(function() {
|
||||
});
|
||||
|
||||
$("#btn_config").click(function() {
|
||||
DoOpenMhlConfig()
|
||||
try{
|
||||
window.external.openMhlConfig();
|
||||
} catch(e){
|
||||
createErrorAlert("Error on openMhlConfig: " + e);
|
||||
}
|
||||
})
|
||||
function DoOpenMhlConfig() {
|
||||
"use strict";
|
||||
try {
|
||||
window.external.openMhlConfig()
|
||||
} catch (e) {}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user