From 81fe06fa515fd0eeb1e376c118eb4d69773ef86b Mon Sep 17 00:00:00 2001 From: The Wizard Bear <42446683+TheWizardBear@users.noreply.github.com> Date: Wed, 28 Oct 2020 21:35:37 +0000 Subject: [PATCH] final changes for v1.0.0 --- README.md | 2 +- egg.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a32a4f0..47c8c14 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,7 @@ By default, the character map is set to `"█▓▒░ "`, but you can override * You can generate ASCII art by using character maps such as `"@#?)l+-. "`. * Make sure you have escaped any characters you need to with a back to slash (`\`). * You don't have to sort your characters from darksest to lightest or vice versa. Play around with what works for specfic images, and see if you can create any interesting effects. -* Padding your character maps can be useful when brightness is not evenly distributed. For example, if your image has mostly dark tones, then your character map might look something like this: `"█▓▒░░ "` (assuming it the start of the character map represents the darker tones) as this will make it easier to distinguish between similar colors. +* Padding your character maps can be useful when brightness is not evenly distributed. For example, if your image has mostly dark tones, then your character map might have some extra spaces on the end, so that it is easier to distinguish between darker colors than lighter ones. * Currently there is a bug in std/flags which means that using the shortened/alias flag (`-m`) won't work if there is an `=` character in the character map. You will have to use `--character-map` instead. Currently characters that JavaScript handles as having a length of greater than 1 (like emojis) do not work when you are using a character map string. You can get them to work by using a character map array, but this isn't possible with the CLI tool. diff --git a/egg.json b/egg.json index 737b37a..50f80ca 100644 --- a/egg.json +++ b/egg.json @@ -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": "0.2.0", + "version": "1.0.0", "unstable": true, "files": [ "./README.md", @@ -12,7 +12,8 @@ "./LICENSE", "./deps.ts", "./cli.ts", - "./.gitignore" + "./.gitignore", + "./images/*" ], "checkFormat": false, "checkTests": false,