Applied changes suggested by @cmdr2

This commit is contained in:
ManInDark 2023-06-14 16:59:30 +02:00
parent ed59972b03
commit 31a7e178a1
No known key found for this signature in database
GPG Key ID: 72EC12A5B2D62779

View File

@ -1416,7 +1416,7 @@ function applyPermuteOperatorNumber(prompts) { // prompts is array of input, tri
promptMatrix = promptMatrix.filter((p) => p !== "")
if (promptMatrix.length > 0) {
promptCounter *= permutePromptsNumber(promptMatrix)
promptCounter *= permuteNumber(promptMatrix)
}
numberOfPrompts += promptCounter
})
@ -1445,10 +1445,6 @@ function permutePrompts(promptBase, promptMatrix) {
return prompts
}
function permutePromptsNumber(promptMatrix) { // this should calculate how many different prompts can be made with the prompt matrix
return permuteNumber(promptMatrix)
}
// create a file name with embedded prompt and metadata
// for easier cateloging and comparison
function createFileName(prompt, seed, steps, guidance, outputFormat) {
@ -1624,12 +1620,12 @@ function renameMakeImageButton() {
}
if (SD.activeTasks.size == 0) {
if (totalImages >= 10000)
makeImageBtn.innerText = "Make tens of thousands of images"
makeImageBtn.innerText = "Make 10000+ images"
else
makeImageBtn.innerText = "Make " + imageLabel
} else {
if (totalImages >= 10000)
makeImageBtn.innerText = "Enqueue tens of thousands of images"
makeImageBtn.innerText = "Enqueue 10000+ images"
else
makeImageBtn.innerText = "Enqueue Next " + imageLabel
}