-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zhangfuxing
committed
Jan 5, 2024
1 parent
06c9fbc
commit 18f908d
Showing
2 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ ProgressBar in terminal for deno | |
#### example | ||
|
||
```ts | ||
import { MultiProgressBar } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { MultiProgressBar } from "https://deno.land/x/[email protected].1-writeAllSync/mod.ts"; | ||
|
||
const title = "download files"; | ||
const total = 100; | ||
|
@@ -147,7 +147,7 @@ What is displayed and display order, default: ':bar :text :percent :time :comple | |
#### simple example | ||
|
||
```ts | ||
import ProgressBar from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import ProgressBar from "https://deno.land/x/[email protected].1-writeAllSync/mod.ts"; | ||
|
||
const title = "downloading:"; | ||
const total = 100; | ||
|
@@ -171,7 +171,7 @@ downloading(); | |
#### complex example | ||
|
||
```ts | ||
import ProgressBar from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import ProgressBar from "https://deno.land/x/[email protected].1-writeAllSync/mod.ts"; | ||
|
||
const total = 100; | ||
const progress = new ProgressBar({ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
## Changelog | ||
|
||
### v1.4.1-writeAllSync - 2024.01.05 | ||
|
||
remove addSignalListener: Deno Version 1.39.1, deno test no longer reports errors | ||
|
||
### v1.4.0 - 2023.11.12 | ||
|
||
update to use [deno standard library v0.206.0](https://deno.land/[email protected]) | ||
|