|
| 1 | +// Copyright (c) 2021 Brian J. Downs |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
1 | 15 | package spinner
|
2 | 16 |
|
3 | 17 | const (
|
@@ -25,6 +39,7 @@ var CharSets = map[int][]string{
|
25 | 39 | 15: {"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"},
|
26 | 40 | 16: {"▉", "▊", "▋", "▌", "▍", "▎", "▏", "▎", "▍", "▌", "▋", "▊", "▉"},
|
27 | 41 | 17: {"■", "□", "▪", "▫"},
|
| 42 | + |
28 | 43 | 18: {"←", "↑", "→", "↓"},
|
29 | 44 | 19: {"╫", "╪"},
|
30 | 45 | 20: {"⇐", "⇖", "⇑", "⇗", "⇒", "⇘", "⇓", "⇙"},
|
@@ -86,6 +101,16 @@ var CharSets = map[int][]string{
|
86 | 101 | 78: {"⠈⠁", "⠈⠑", "⠈⠱", "⠈⡱", "⢀⡱", "⢄⡱", "⢄⡱", "⢆⡱", "⢎⡱", "⢎⡰", "⢎⡠", "⢎⡀", "⢎⠁", "⠎⠁", "⠊⠁"},
|
87 | 102 | 79: {"________", "-_______", "_-______", "__-_____", "___-____", "____-___", "_____-__", "______-_", "_______-", "________", "_______-", "______-_", "_____-__", "____-___", "___-____", "__-_____", "_-______", "-_______", "________"},
|
88 | 103 | 80: {"|_______", "_/______", "__-_____", "___\\____", "____|___", "_____/__", "______-_", "_______\\", "_______|", "______\\_", "_____-__", "____/___", "___|____", "__\\_____", "_-______"},
|
| 104 | + 81: {"□", "◱", "◧", "▣", "■"}, |
| 105 | + 82: {"□", "◱", "▨", "▩", "■"}, |
| 106 | + 83: {"░", "▒", "▓", "█"}, |
| 107 | + 84: {"░", "█"}, |
| 108 | + 85: {"⚪", "⚫"}, |
| 109 | + 86: {"◯", "⬤"}, |
| 110 | + 87: {"▱", "▰"}, |
| 111 | + 88: {"➊", "➋", "➌", "➍", "➎", "➏", "➐", "➑", "➒", "➓"}, |
| 112 | + 89: {"½", "⅓", "⅔", "¼", "¾", "⅛", "⅜", "⅝", "⅞"}, |
| 113 | + 90: {"↞", "↟", "↠", "↡"}, |
89 | 114 | }
|
90 | 115 |
|
91 | 116 | func init() {
|
|
0 commit comments