forked from Telodendria/Telodendria
Add ASCII logo!
This commit is contained in:
parent
b5d55427b8
commit
ede060ef59
3 changed files with 83 additions and 1 deletions
35
README.txt
35
README.txt
|
@ -1,3 +1,26 @@
|
||||||
|
.= -=-
|
||||||
|
:.:+ .=:.
|
||||||
|
.=+-==. :.
|
||||||
|
.+- =.
|
||||||
|
.+ :+.
|
||||||
|
==. -+:
|
||||||
|
=++==--:: =+.
|
||||||
|
.:::--=+=: :+=
|
||||||
|
:==. -=:
|
||||||
|
===----=-. ... :+.
|
||||||
|
:==+=======: .-+-::-+-=+=
|
||||||
|
.==*%#======= :+- ..
|
||||||
|
.:--=-===+=========-. :+:
|
||||||
|
.=++=::..:============-+=-=-
|
||||||
|
:+=: :=+-: .-=========-. .
|
||||||
|
=+++: .:=+-: .:--. .--:==:
|
||||||
|
::---:.. :=+: ==
|
||||||
|
++. .+-
|
||||||
|
=+ .+- ...:
|
||||||
|
+- -+-:-+=::+:
|
||||||
|
:=-....:-=: .--: =-
|
||||||
|
-++=:.:::..
|
||||||
|
|
||||||
=======================================================
|
=======================================================
|
||||||
|_ _|__| | ___ __| | ___ _ __ __| |_ __(_) __ _
|
|_ _|__| | ___ __| | ___ _ __ __| |_ __(_) __ _
|
||||||
| |/ _ \ |/ _ \ / _` |/ _ \ '_ \ / _` | '__| |/ _` |
|
| |/ _ \ |/ _ \ / _` |/ _ \ '_ \ / _` | '__| |/ _` |
|
||||||
|
@ -25,3 +48,15 @@ Telodendria/
|
||||||
Routes/ - Where Matrix API endpoints are implemented
|
Routes/ - Where Matrix API endpoints are implemented
|
||||||
tests/ - Unit and integration tests will eventually go here.
|
tests/ - Unit and integration tests will eventually go here.
|
||||||
tools/ - Development environment and tools.
|
tools/ - Development environment and tools.
|
||||||
|
|
||||||
|
To cut a new release for Telodendria, perform the following
|
||||||
|
steps. This is just a reference for me so I don't mess it up.
|
||||||
|
|
||||||
|
- Update tools/bin/td to declare the next version number.
|
||||||
|
- Update site/index.html with links to the new version.
|
||||||
|
- Make sure man/man7/telodendria-changelog.7 is up to date
|
||||||
|
with the latest information.
|
||||||
|
- Commit any changes made in the previous steps.
|
||||||
|
- Run the release recipe: td release
|
||||||
|
- Deploy the site: td site
|
||||||
|
|
||||||
|
|
|
@ -207,7 +207,8 @@ portions, regardless of the size, of the software by omitting the word
|
||||||
.Pp
|
.Pp
|
||||||
The
|
The
|
||||||
.Nm
|
.Nm
|
||||||
logo, however, belongs solely to the
|
logo in all forms, including the ASCII representation, belongs solely
|
||||||
|
to the
|
||||||
.Nm
|
.Nm
|
||||||
project. It must only be used to represent the official
|
project. It must only be used to represent the official
|
||||||
.Nm
|
.Nm
|
||||||
|
|
|
@ -104,6 +104,52 @@ typedef enum ArgFlag
|
||||||
static void
|
static void
|
||||||
TelodendriaPrintHeader(LogConfig * lc)
|
TelodendriaPrintHeader(LogConfig * lc)
|
||||||
{
|
{
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .= -=-");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" :.:+ .=:.");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .=+-==. :.");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .+- =.");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .+ :+.");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" ==. -+:");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" =++==--:: =+.");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .:::--=+=: :+=");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" :==. -=:");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" ===----=-. ... :+.");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" :==+=======: .-+-::-+-=+=");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .==*%#======= :+- ..");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .:--=-===+=========-. :+:");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" .=++=::..:============-+=-=-");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
":+=: :=+-: .-=========-. .");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" =+++: .:=+-: .:--. .--:==:");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" ::---:.. :=+: ==");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" ++. .+-");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" =+ .+- ...:");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" +- -+-:-+=::+:");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" :=-....:-=: .--: =-");
|
||||||
|
Log(lc, LOG_INFO,
|
||||||
|
" -++=:.:::..");
|
||||||
|
|
||||||
|
|
||||||
Log(lc, LOG_INFO,
|
Log(lc, LOG_INFO,
|
||||||
" _____ _ _ _ _");
|
" _____ _ _ _ _");
|
||||||
Log(lc, LOG_INFO,
|
Log(lc, LOG_INFO,
|
||||||
|
|
Loading…
Reference in a new issue