Skip to content

Commit

Permalink
Version 2.1.2: fixed an incorrect dependency version
Browse files Browse the repository at this point in the history
  • Loading branch information
mjrlowe committed Nov 26, 2020
1 parent 2f2472d commit 1697e8c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Currently only PNG and JPG images are supported.
To install the CLI tool, run the following from the command line:

```shell
deno install --allow-read --allow-net --unstable --force https://x.nest.land/terminal_images@2.1.1/cli.ts
deno install --allow-read --allow-net --unstable --force https://x.nest.land/terminal_images@2.1.2/cli.ts
```

Then run
Expand Down Expand Up @@ -52,7 +52,7 @@ _Note that the size might be different, as by default it adapts to the size of y
Here is an example of how you can use it:

```ts
import { printImageString } from "https://x.nest.land/terminal_images@2.1.1/mod.ts";
import { printImageString } from "https://x.nest.land/terminal_images@2.1.2/mod.ts";

printImageString({

Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ export { decode as decodeJpeg } from "https://deno.land/x/jpegts@1.1/mod.ts";
export { parse } from "https://deno.land/std@0.77.0/flags/mod.ts";
export { stringWidth } from "https://deno.land/x/gutenberg@0.1.5/unicode/width/mod.ts";
export * as colors from "https://deno.land/std@0.77.0/fmt/colors.ts";
import unpng from "https://cdn.skypack.dev/upng-js@v2.1.1";
import unpng from "https://cdn.skypack.dev/upng-js@v2.1.0";
export const decodePng = (unpng as any).decode;
2 changes: 1 addition & 1 deletion egg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"entry": "./mod.ts",
"description": "A Deno module and CLI tool for displaying images in the terminal",
"homepage": "https://github.com/TheWizardBear/terminal_images",
"version": "2.1.1",
"version": "2.1.2",
"files": [
"./README.md",
"./mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default "2.1.1";
export default "2.1.2";

0 comments on commit 1697e8c

Please sign in to comment.