Add ASCII logo!

This commit is contained in:
Jordan Bancino 2022-12-13 17:09:05 +00:00
parent b5d55427b8
commit ede060ef59
3 changed files with 83 additions and 1 deletions

View File

@ -1,3 +1,26 @@
.= -=-
:.:+ .=:.
.=+-==. :.
.+- =.
.+ :+.
==. -+:
=++==--:: =+.
.:::--=+=: :+=
:==. -=:
===----=-. ... :+.
:==+=======: .-+-::-+-=+=
.==*%#======= :+- ..
.:--=-===+=========-. :+:
.=++=::..:============-+=-=-
:+=: :=+-: .-=========-. .
=+++: .:=+-: .:--. .--:==:
::---:.. :=+: ==
++. .+-
=+ .+- ...:
+- -+-:-+=::+:
:=-....:-=: .--: =-
-++=:.:::..
=======================================================
|_ _|__| | ___ __| | ___ _ __ __| |_ __(_) __ _
| |/ _ \ |/ _ \ / _` |/ _ \ '_ \ / _` | '__| |/ _` |
@ -25,3 +48,15 @@ Telodendria/
Routes/ - Where Matrix API endpoints are implemented
tests/ - Unit and integration tests will eventually go here.
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

View File

@ -207,7 +207,8 @@ portions, regardless of the size, of the software by omitting the word
.Pp
The
.Nm
logo, however, belongs solely to the
logo in all forms, including the ASCII representation, belongs solely
to the
.Nm
project. It must only be used to represent the official
.Nm

View File

@ -104,6 +104,52 @@ typedef enum ArgFlag
static void
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,