From 55f84855611b3b3a66ccf7bbf61d5f83984c6e2b Mon Sep 17 00:00:00 2001 From: ValKmjolnir Date: Fri, 16 Aug 2024 23:02:27 +0800 Subject: [PATCH] :art: add new svg logo --- README.md | 2 +- doc/README_zh.md | 2 +- doc/svg/nasal.svg | 18 ++++++++++++++++++ doc/svg/nasal_transparent.svg | 18 ++++++++++++++++++ doc/tutorial.md | 2 +- doc/tutorial_zh.md | 2 +- src/main.cpp | 2 +- 7 files changed, 41 insertions(+), 5 deletions(-) create mode 100644 doc/svg/nasal.svg create mode 100644 doc/svg/nasal_transparent.svg diff --git a/README.md b/README.md index df1701f..6c024aa 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# __Nasal - Modern Interpreter__ +# __Nasal - Modern Interpreter__ diff --git a/doc/README_zh.md b/doc/README_zh.md index c5b0831..6970633 100644 --- a/doc/README_zh.md +++ b/doc/README_zh.md @@ -1,4 +1,4 @@ -# __Nasal - Modern Interpreter__ +# __Nasal - Modern Interpreter__ diff --git a/doc/svg/nasal.svg b/doc/svg/nasal.svg new file mode 100644 index 0000000..389651a --- /dev/null +++ b/doc/svg/nasal.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/svg/nasal_transparent.svg b/doc/svg/nasal_transparent.svg new file mode 100644 index 0000000..e26e972 --- /dev/null +++ b/doc/svg/nasal_transparent.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/tutorial.md b/doc/tutorial.md index 1dbd2ab..18efbf5 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -1,4 +1,4 @@ -# __Tutorial__ +# __Tutorial__ ![mandelbrotset](../doc/pic/mandelbrotset.png) diff --git a/doc/tutorial_zh.md b/doc/tutorial_zh.md index bc2220a..715782c 100644 --- a/doc/tutorial_zh.md +++ b/doc/tutorial_zh.md @@ -1,4 +1,4 @@ -# __教程__ +# __教程__ ![mandelbrotset](../doc/pic/mandelbrotset.png) diff --git a/src/main.cpp b/src/main.cpp index 70e344f..aac6c26 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -44,7 +44,7 @@ std::ostream& logo(std::ostream& out) { << " - http://fgprc.org\n" << " - http://fgprc.org.cn\n" << "\n" - << "input to get help .\n\n"; + << "input to get help.\n\n"; return out; }