From 7bdcb5b7b43fd865b0a94fc8c8148141666031fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Mon, 13 Jul 2026 11:09:20 +0400 Subject: [PATCH] =?UTF-8?q?v0.0.10:=20fix=20download=20filename=20?= =?UTF-8?q?=E2=80=94=20timestamp=20=D0=BB=D0=BE=D0=BA=D0=B0=D0=BB=D1=8C?= =?UTF-8?q?=D0=BD=D0=BE=D0=B5=20=D0=B2=D1=80=D0=B5=D0=BC=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/app.py | 2 +- site/templates/index.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/site/app.py b/site/app.py index fab97b3..200de17 100644 --- a/site/app.py +++ b/site/app.py @@ -20,7 +20,7 @@ if _sys_path_root not in sys.path: sys.path.insert(0, _sys_path_root) # Версия приложения (меняется при изменениях) -VERSION = "0.0.9" +VERSION = "0.0.10" def create_app(): diff --git a/site/templates/index.html b/site/templates/index.html index 1983238..fffc44d 100644 --- a/site/templates/index.html +++ b/site/templates/index.html @@ -259,7 +259,7 @@ function downloadZip() { if (!currentSid) return; const a = document.createElement('a'); a.href = '/api/download/' + currentSid; - a.download = 'drhider.zip'; + a.download = 'drhider_' + ts() + '.zip'; a.click(); } @@ -267,7 +267,7 @@ function downloadCsv() { if (!currentSid) return; const a = document.createElement('a'); a.href = '/api/csv/' + currentSid; - a.download = 'mapping.csv'; + a.download = 'mapping_' + ts() + '.csv'; a.click(); }