diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-05-15 18:22:35 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-05-15 18:22:35 +0000 |
commit | a47abe1b7b667374e9df1932172230132d3fe8db (patch) | |
tree | 85952e9515481e7a768f6dc7a179359ce7754368 /modules/ui_extensions.py | |
parent | 0d2a4b608c075daa3a4d1a1c9df01a763ae4793a (diff) | |
download | stable-diffusion-webui-gfx803-a47abe1b7b667374e9df1932172230132d3fe8db.tar.gz stable-diffusion-webui-gfx803-a47abe1b7b667374e9df1932172230132d3fe8db.tar.bz2 stable-diffusion-webui-gfx803-a47abe1b7b667374e9df1932172230132d3fe8db.zip |
update extensions table: show branch, show date in separate column, and show version from tags if available
Diffstat (limited to 'modules/ui_extensions.py')
-rw-r--r-- | modules/ui_extensions.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/ui_extensions.py b/modules/ui_extensions.py index aaa7e571..6ad9a97c 100644 --- a/modules/ui_extensions.py +++ b/modules/ui_extensions.py @@ -141,7 +141,9 @@ def extension_table(): <tr>
<th><abbr title="Use checkbox to enable the extension; it will be enabled or disabled when you click apply button">Extension</abbr></th>
<th>URL</th>
- <th><abbr title="Extension version">Version</abbr></th>
+ <th>Branch</th>
+ <th>Version</th>
+ <th>Date</th>
<th><abbr title="Use checkbox to mark the extension for update; it will be updated when you click apply button">Update</abbr></th>
</tr>
</thead>
@@ -149,6 +151,7 @@ def extension_table(): """
for ext in extensions.extensions:
+ ext: extensions.Extension
ext.read_info_from_repo()
remote = f"""<a href="{html.escape(ext.remote or '')}" target="_blank">{html.escape("built-in" if ext.is_builtin else ext.remote or '')}</a>"""
@@ -170,7 +173,9 @@ def extension_table(): <tr>
<td><label{style}><input class="gr-check-radio gr-checkbox" name="enable_{html.escape(ext.name)}" type="checkbox" {'checked="checked"' if ext.enabled else ''}>{html.escape(ext.name)}</label></td>
<td>{remote}</td>
+ <td>{ext.branch}</td>
<td>{version_link}</td>
+ <td>{time.asctime(time.gmtime(ext.commit_date))}</td>
<td{' class="extension_status"' if ext.remote is not None else ''}>{ext_status}</td>
</tr>
"""
|