We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 915015f commit b20fc0aCopy full SHA for b20fc0a
webui/generator.py
@@ -120,8 +120,8 @@ def _show_version(self) -> None:
120
if not current_version:
121
self.logger.warning("Can't get the current version of the package.")
122
return
123
+ st.write(f"`{current_version}`")
124
if self.public:
- st.write(f"`{current_version}`")
125
126
if current_version != latest_version:
127
st.warning(
@@ -542,6 +542,7 @@ def generate_map(self) -> None:
542
self.status_container.info(
543
f"Your position in the queue: {position}. Please wait...", icon="⏳"
544
)
545
+ self.status_container.info("Map generation started...", icon="🔄")
546
547
try:
548
step = int(100 / (len(game.components) + 2))
0 commit comments