diff --git a/archivebox/templates/admin/progress_monitor.html b/archivebox/templates/admin/progress_monitor.html index bb411c59..cfe72667 100644 --- a/archivebox/templates/admin/progress_monitor.html +++ b/archivebox/templates/admin/progress_monitor.html @@ -273,12 +273,6 @@ background: rgba(31, 111, 235, 0.16); border-color: rgba(31, 111, 235, 0.28); } - #progress-monitor .crawl-badge.source { - max-width: 340px; - color: #58a6ff; - background: rgba(88, 166, 255, 0.10); - border-color: rgba(88, 166, 255, 0.20); - } #progress-monitor .crawl-stats { display: flex; gap: 6px; @@ -928,8 +922,6 @@ const crawlId = (crawl.id || 'unknown').toString(); const crawlShortId = crawlId === 'unknown' ? 'unknown' : crawlId.slice(-8); const startedDate = crawl.started ? crawl.started.slice(0, 10) : 'unknown date'; - const sourceText = crawl.urls_preview || crawl.label || ''; - const sourceShort = sourceText.length > 70 ? `${sourceText.slice(0, 67)}...` : sourceText; const canCancel = crawl.status === 'queued' || crawl.status === 'started'; const cancelBtn = canCancel ? `` @@ -1014,7 +1006,6 @@ ? `${crawl.total_snapshots} snapshot${(crawl.total_snapshots || 0) === 1 ? '' : 's'}` : ((crawl.urls_count || 0) > 0 ? `${crawl.urls_count} URL${(crawl.urls_count || 0) === 1 ? '' : 's'}` : 'no URLs'); const crawlBadges = [ - sourceShort ? `source${escapeHtml(sourceShort)}` : '', `persona${escapeHtml(crawl.persona || 'Default')}`, `depth${crawl.max_depth || 0}`, `urls${escapeHtml(maxUrlsText)}`, diff --git a/etc/package.json b/etc/package.json index 5a9ce873..6c26fd73 100644 --- a/etc/package.json +++ b/etc/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.9.32rc14", + "version": "0.9.32rc15", "repository": "github:ArchiveBox/ArchiveBox", "license": "MIT", "dependencies": { diff --git a/pyproject.toml b/pyproject.toml index 52be9411..4d85a723 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "archivebox" -version = "0.9.32rc14" +version = "0.9.32rc15" requires-python = ">=3.13" description = "Self-hosted internet archiving solution." authors = [{name = "Nick Sweeting", email = "pyproject.toml@archivebox.io"}]