Skip to content

Commit 7d7d8cb

Browse files
committed
TerminalGraphics -> UnicodeGraphics
1 parent 19739ed commit 7d7d8cb

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ git:
2727

2828
## uncomment the following lines to override the default test script
2929
#script:
30-
# - julia -e 'Pkg.clone(pwd()); Pkg.build("TerminalGraphics"); Pkg.test("TerminalGraphics"; coverage=true)'
30+
# - julia -e 'Pkg.clone(pwd()); Pkg.build("UnicodeGraphics"); Pkg.test("UnicodeGraphics"; coverage=true)'
3131
after_success:
3232
# push coverage results to Coveralls
33-
- julia -e 'cd(Pkg.dir("TerminalGraphics")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
33+
- julia -e 'cd(Pkg.dir("UnicodeGraphics")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
3434
# push coverage results to Codecov
35-
- julia -e 'cd(Pkg.dir("TerminalGraphics")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
35+
- julia -e 'cd(Pkg.dir("UnicodeGraphics")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The TerminalGraphics.jl package is licensed under the MIT "Expat" License:
1+
The UnicodeGraphics.jl package is licensed under the MIT "Expat" License:
22

33
> Copyright (c) 2018: Rafael Schouten.
44
>

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# TerminalGraphics
1+
# UnicodeGraphics
22

3-
[![Build Status](https://travis-ci.org/rafaqz/TerminalGraphics.jl.svg?branch=master)](https://travis-ci.org/rafaqz/TerminalGraphics.jl)
4-
[![Coverage Status](https://coveralls.io/repos/rafaqz/TerminalGraphics.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/rafaqz/TerminalGraphics.jl?branch=master)
5-
[![codecov.io](http://codecov.io/github/rafaqz/TerminalGraphics.jl/coverage.svg?branch=master)](http://codecov.io/github/rafaqz/TerminalGraphics.jl?branch=master)
3+
[![Build Status](https://travis-ci.org/rafaqz/UnicodeGraphics.jl.svg?branch=master)](https://travis-ci.org/rafaqz/UnicodeGraphics.jl)
4+
[![Coverage Status](https://coveralls.io/repos/rafaqz/UnicodeGraphics.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/rafaqz/UnicodeGraphics.jl?branch=master)
5+
[![codecov.io](http://codecov.io/github/rafaqz/UnicodeGraphics.jl/coverage.svg?branch=master)](http://codecov.io/github/rafaqz/UnicodeGraphics.jl?branch=master)
66

77
Convert a matrix of Real into a braile or block Unicode string, real fast.
88

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ build_script:
4141
# Need to convert from shallow to complete for Pkg.clone to work
4242
- IF EXIST .git\shallow (git fetch --unshallow)
4343
- C:\projects\julia\bin\julia -e "versioninfo();
44-
Pkg.clone(pwd(), \"TerminalGraphics\"); Pkg.build(\"TerminalGraphics\")"
44+
Pkg.clone(pwd(), \"UnicodeGraphics\"); Pkg.build(\"UnicodeGraphics\")"
4545

4646
test_script:
47-
- C:\projects\julia\bin\julia -e "Pkg.test(\"TerminalGraphics\")"
47+
- C:\projects\julia\bin\julia -e "Pkg.test(\"UnicodeGraphics\")"

src/TerminalGraphics.jl renamed to src/UnicodeGraphics.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Block and braile rendering of julia arrays, for terminal graphics.
33
"""
4-
module TerminalGraphics
4+
module UnicodeGraphics
55

66
export blockize, brailize
77

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using TerminalGraphics,
1+
using UnicodeGraphics,
22
Test
33

44
pac = [0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0;

0 commit comments

Comments
 (0)