]> Nishi Git Mirror - odl.git/commitdiff
「ダウンロード中」や「ダウンロード済み」状況を表示する事が不要 odl-0.3.0
author諏訪子 <suwako@076.moe>
Sat, 25 May 2024 08:57:40 +0000 (17:57 +0900)
committer諏訪子 <suwako@076.moe>
Sat, 25 May 2024 08:57:40 +0000 (17:57 +0900)
CHANGELOG.md
main.c

index 615b3f82588fe1a72dcc65aedd36ee11c656d216..04b33e2e30abd8820f51c7b21a714b7fa91cf0df 100644 (file)
@@ -8,6 +8,7 @@
 * 予行演習モード
 * `make release-freebsd`の修正
 * 使い方の修正
+* 「ダウンロード中」や「ダウンロード済み」状況を表示する事が不要
 
 # 0.2.0
 * ファイル名はパラメートルを付いたら、ファイル名は拡張子に
diff --git a/main.c b/main.c
index ea931f141bda3b014c315ab8462b4e3f5c064416..4b738d484b6c449cb8a7840c71b0d019ca0d3a7b 100644 (file)
--- a/main.c
+++ b/main.c
@@ -63,8 +63,6 @@ int progress_callback(void *cp, double dt, double dn, double ut, double un) {
   (void)un;
 
   double progress = (dn / dt) * 100.0;
-  char* status = "ダウンロード中";
-  if (progress == 100.0) status = "ダウンロード済み";
 
   printf("\r[");
   int barw = 50;
@@ -76,7 +74,7 @@ int progress_callback(void *cp, double dt, double dn, double ut, double un) {
     else printf(" ");
   }
 
-  printf("] %.2f%% %s, %s", progress, filename, status);
+  printf("] %.2f%% %s", progress, filename);
   fflush(stdout);
 
   return 0;