[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/hyperdrive a2120e57e9 03/19: Fix: Size
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/hyperdrive a2120e57e9 03/19: Fix: Size |
Date: |
Thu, 1 Aug 2024 01:00:10 -0400 (EDT) |
branch: elpa/hyperdrive
commit a2120e57e97053b175c1eddc579049950508ec56
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>
Fix: Size
---
hyperdrive.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/hyperdrive.el b/hyperdrive.el
index bf981a16d2..9e9571620c 100644
--- a/hyperdrive.el
+++ b/hyperdrive.el
@@ -1425,12 +1425,12 @@ If FORCEP, don't prompt for confirmation before
downloading."
(ignore-errors
(h/message "Checking server %S..."
(url-host (url-generic-parse-url url)))
- (setf size (file-size-human-readable
- (head-size url)))))
+ (setf size (head-size url))))
(if size
(if (or forcep
(yes-or-no-p
- (format "Download and install gateway (%s)? " size)))
+ (format "Download and install gateway (%s)? "
+ (file-size-human-readable size))))
(progn
(setf forcep t) ;; Don't prompt again.
(download url sha256))
@@ -1473,7 +1473,8 @@ If FORCEP, don't prompt for confirmation before
downloading."
:path temp-file
:total-size size
:completed-fn #'kill-buffer-and-window))
- (h/message "Downloading %s from %S to %S" size url destination)))
+ (h/message "Downloading %s from %S to %S"
+ (file-size-human-readable size) url destination)))
(check (file-name sha256 url)
(if (with-temp-buffer
(insert-file-contents-literally file-name)
- [nongnu] elpa/hyperdrive updated (52297ba0bd -> 4c5fc6ca76), ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 472e01a805 01/19: Fix: (h/install) Use temp file in temporary-file-directory, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 95f814ddb7 09/19: Tidy, improve, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 481df10760 05/19: Fix: Timer, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 4af29a6156 06/19: Fix: Completing download, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive a2120e57e9 03/19: Fix: Size,
ELPA Syncer <=
- [nongnu] elpa/hyperdrive 53ce1cf3f4 04/19: Fix: Wait for download to start, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 84b59e1f8f 02/19: WIP: hyperdrive-download-monitor, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive c35423cdd4 12/19: Use special-mode, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 015917ecd3 14/19: Fix: (h//download-monitor) Cancel timer if buffer killed, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 4742b430fa 07/19: Fix: Killing monitor buffer, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 95323b4bf6 08/19: Refactoring, fixes, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 35d04e8cc5 18/19: Fix: Close monitor from ready hook; ensure buffer is live, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 4c5fc6ca76 19/19: Merge: Download monitor fixes/improvements, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 9156b1a7ac 16/19: Fix: Ensure timer before canceling, ELPA Syncer, 2024/08/01
- [nongnu] elpa/hyperdrive 34e27bca27 10/19: Show elapsed time, ELPA Syncer, 2024/08/01