MyFSIO v0.2.2 Release #14

Merged
kqjy merged 17 commits from next into main 2026-01-19 07:12:15 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit f04c6a9cdc - Show all commits

View File

@@ -58,7 +58,7 @@ def _format_datetime_display(dt: datetime, display_tz: str | None = None) -> str
dt = dt.astimezone(tz)
except (KeyError, ValueError):
pass
return dt.isoformat()
return dt.strftime("%b %d, %Y %H:%M")

View File

@@ -1793,7 +1793,7 @@
previewKey.textContent = row.dataset.key;
previewSize.textContent = formatBytes(Number(row.dataset.size));
previewModified.textContent = row.dataset.lastModifiedDisplay || row.dataset.lastModified;
previewModified.textContent = row.dataset.lastModified;
previewEtag.textContent = row.dataset.etag;
downloadButton.href = row.dataset.downloadUrl;
downloadButton.classList.remove('disabled');