diff options
author | Eyrie <me@eyriewow.com> | 2022-09-25 12:45:20 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-25 14:11:07 +0000 |
commit | 1877a3767ed7502c25245c3de3449b22067db74c (patch) | |
tree | 9cdde75f1d1fd123760cf279b6346923dac102bc /modules | |
parent | 4c3d4aad60ffd701967ce1d358c37a33c941bb44 (diff) | |
download | stable-diffusion-webui-gfx803-1877a3767ed7502c25245c3de3449b22067db74c.tar.gz stable-diffusion-webui-gfx803-1877a3767ed7502c25245c3de3449b22067db74c.tar.bz2 stable-diffusion-webui-gfx803-1877a3767ed7502c25245c3de3449b22067db74c.zip |
Changed job_id to timestamp
Diffstat (limited to 'modules')
-rw-r--r-- | modules/images.py | 2 | ||||
-rw-r--r-- | modules/shared.py | 9 |
2 files changed, 5 insertions, 6 deletions
diff --git a/modules/images.py b/modules/images.py index e85c71d5..ae0e6304 100644 --- a/modules/images.py +++ b/modules/images.py @@ -295,7 +295,7 @@ def apply_filename_pattern(x, p, seed, prompt): x = x.replace("[model_hash]", shared.sd_model.sd_model_hash)
x = x.replace("[date]", datetime.date.today().isoformat())
- x = x.replace("[job_id]", shared.state.job_id)
+ x = x.replace("[job_timestamp]", shared.state.job_timestamp)
if cmd_opts.hide_ui_dir_config:
x = re.sub(r'^[\\/]+|\.{2,}[\\/]+|[\\/]+\.{2,}', '', x)
diff --git a/modules/shared.py b/modules/shared.py index 01076be5..c32da110 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -4,7 +4,7 @@ import json import os
import gradio as gr
import tqdm
-import random
+import datetime
import modules.artists
from modules.paths import script_path, sd_path
@@ -66,7 +66,7 @@ class State: job = ""
job_no = 0
job_count = 0
- job_id = 0
+ job_timestamp = 0
sampling_step = 0
sampling_steps = 0
current_latent = None
@@ -80,8 +80,8 @@ class State: self.job_no += 1
self.sampling_step = 0
self.current_image_sampling_step = 0
- def gen_job_id(self):
- return ''.join(random.choices('0123456789abcdefghijklmnopqrstuvwxyz', k=opts.job_id_length))
+ def get_job_timestamp(self):
+ return datetime.datetime.now().strftime("%Y%m%d%H%M%S")
state = State()
@@ -160,7 +160,6 @@ options_templates.update(options_section(('saving-to-dirs', "Saving to a directo "grid_save_to_dirs": OptionInfo(False, "Save grids to subdirectory"),
"directories_filename_pattern": OptionInfo("", "Directory name pattern"),
"directories_max_prompt_words": OptionInfo(8, "Max prompt words", gr.Slider, {"minimum": 1, "maximum": 20, "step": 1}),
- "job_id_length": OptionInfo(5, "Length of job id", gr.Slider, {"minimum": 5, "maximum": 20, "step": 1}),
}))
options_templates.update(options_section(('upscaling', "Upscaling"), {
|