typo fix, version bump
This commit is contained in:
parent
4d5a8c6134
commit
14b3e63e95
2 changed files with 18 additions and 13 deletions
|
@ -1,4 +1,4 @@
|
|||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
|
@ -337,7 +337,7 @@
|
|||
<br />
|
||||
<span id="version">
|
||||
<a href="https://github.com/zero01101/openOutpaint" target="_blank">
|
||||
v20231216.001
|
||||
v20240127.001
|
||||
</a>
|
||||
<br />
|
||||
<a
|
||||
|
@ -560,7 +560,7 @@
|
|||
|
||||
<!-- Content -->
|
||||
<script src="js/prompt.js?v=7a1c68c" type="text/javascript"></script>
|
||||
<script src="js/index.js?v=c92b1a2" type="text/javascript"></script>
|
||||
<script src="js/index.js?v=70af18f" type="text/javascript"></script>
|
||||
|
||||
<script
|
||||
src="js/ui/floating/history.js?v=4f29db4"
|
||||
|
|
15
js/index.js
15
js/index.js
|
@ -1434,7 +1434,11 @@ async function getSamplers() {
|
|||
}
|
||||
}
|
||||
|
||||
async function upscaleAndDownload(download = false, add_resource = false, aCanvas = null) {
|
||||
async function upscaleAndDownload(
|
||||
download = false,
|
||||
add_resource = false,
|
||||
aCanvas = null
|
||||
) {
|
||||
// Future improvements: some upscalers take a while to upscale, so we should show a loading bar or something, also a slider for the upscale amount
|
||||
|
||||
// get cropped canvas, send it to upscaler, download result
|
||||
|
@ -1458,7 +1462,7 @@ async function upscaleAndDownload(download = false, add_resource = false, aCanva
|
|||
);
|
||||
imgdata = croppedCanvas.canvas.toDataURL("image/png");
|
||||
} else {
|
||||
console.log("Upscaling recourse canvas.");
|
||||
console.log("Upscaling resource canvas.");
|
||||
imgdata = aCanvas.toDataURL("image/png");
|
||||
}
|
||||
|
||||
|
@ -1499,13 +1503,13 @@ async function upscaleAndDownload(download = false, add_resource = false, aCanva
|
|||
link.href = "data:image/png;base64," + data["image"];
|
||||
|
||||
if (add_resource == true) {
|
||||
console.log("Add upscaled to resource")
|
||||
console.log("Add upscaled to resource");
|
||||
const img = new Image();
|
||||
img.src = link.href;
|
||||
tools.stamp.state.addResource(guid() + " (upscaled)", img);
|
||||
}
|
||||
if (download == true) {
|
||||
console.log("Download upscaled")
|
||||
console.log("Download upscaled");
|
||||
link.click();
|
||||
}
|
||||
});
|
||||
|
@ -1555,7 +1559,8 @@ function loadSettings() {
|
|||
document.getElementById("seed").value = Number(_seed);
|
||||
document.getElementById("cbxHRFix").checked = Boolean(_enable_hr);
|
||||
document.getElementById("cbxRestoreFaces").checked = Boolean(_restore_faces);
|
||||
document.getElementById("cbxSyncCursorSize").checked = Boolean(_sync_cursor_size);
|
||||
document.getElementById("cbxSyncCursorSize").checked =
|
||||
Boolean(_sync_cursor_size);
|
||||
document.getElementById("hrFixScale").value = Number(_hrfix_scale);
|
||||
document.getElementById("hrDenoising").value = Number(_hrfix_denoising);
|
||||
document.getElementById("hrFixLockPx").value = Number(_hrfix_lock_px);
|
||||
|
|
Loading…
Reference in a new issue