From da885c041a99d2a08addf110a19a27e827179016 Mon Sep 17 00:00:00 2001 From: wowario Date: Mon, 14 Jan 2019 00:10:58 +0300 Subject: [PATCH 1/2] add v0.5 ASCII art --- README.md | 2 +- src/cryptonote_core/cryptonote_core.cpp | 30 +++++++++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fca6d6779..75d0f1fb8 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Dates are provided in the format YYYY-MM-DD. | 6969 | 2018-04-24 | Busty Brazzers | v0.2.0.0 | v0.2.0.0 | Bulletproofs, LWMA difficulty algorithm, ringsize >= 10, reduce unlock to 4 | 53666 | 2018-10-06 | Cool Cage | v0.3.0.0 | v0.3.1.3 | Cryptonight variant 2, LWMA v2, ringsize = 22, MMS | 63469 | 2018-11-11 | Dank Doge | v0.4.0.0 | v0.4.0.0 | LWMA v4 -| XXXXX | 2019-02-XX | TBD | v0.5.0.0 | v0.5.0.0 | CryptonightR, SMA difficulty algorithm with N=144, ringsize = XX, Updated Bulletproofs, Fee Per Byte +| XXXXX | 2019-02-XX | Erotic EggplantEmoji | v0.5.0.0 | v0.5.0.0 | CryptonightR, SMA difficulty algorithm with N=144, Updated Bulletproofs, Fee Per Byte X's indicate that these details have not been determined as of commit date. diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index a48079fbd..9dad82017 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -1518,6 +1518,36 @@ namespace cryptonote main_message = "The daemon is running offline and will not attempt to sync to the Monero network."; else main_message = "The daemon will start synchronizing with the network. This may take a long time to complete."; + MGINFO_MAGENTA(ENDL << + "\n \n" + " :+:` \n" + " :++:` \n" + " :++:` \n" + " /++++++++++. \n" + " :++++++++++++` ______ _ _\n" + " -+++++++++++++++:..` | ____| | | (_)\n" + " -/+++++++++++/++++. | |__ _ __ ___ | |_ _ ___ \n" + " `://+++++++++/+++++/` | __| | '__/ _ || __| |/ __|\n" + " -/:::/++++++++++++++:` | |____| | | (_) | |_| | (__ \n" + " `::::/++++++++++++++++:` |______|_| |___/|__||_||___|\n" + " :::::/+++++++++++++++++/` ______ _ _ _____ _ _ \n" + " `-::::/+++++++++++++++++++. | ____| | | | | | ___| (_(_)\n" + " .::::/++++++++++++++++++++:` | |__ __ _ __ _ _ __ | | __ _ _ __ | |_| |__ _ __ ___ ___ _ _ \n" + " .::::/++++++++++++++++++++++:. | __| / _` |/ _` | '_ || |/ _` | '_ | __| __| | '_ ` _ | / _ | | |\n" + " .:--://+++++++++++++++++++++++/:. | |___| (_| | (_| | |_) | | (_| | | | | |_| |___ | | | | | | (_) | | |\n" + " `---://////++++++++++++++++++++++/-` |______|__, ||__, | .__/|_||__,_|_| |_|__||_____||_| |_| |_| ___/| |_|\n" + " .---:///////++++++++++++++++++//+++:` __/ | __/ | | _/ | \n" + " `.-.-:////////++++++++++++++//////++: |___/ |___/|_| |__/ \n" + " `...-//////////+++++++++///////////:` \n" + " bow `...:////////////+++++++/////////:- \n" + " chicka `...-://////////////+++////////::. \n" + " wow wow! `...-::///://////////////////--- \n" + " `...-:://////////////////:..- \n" + " `....-::://////////////-... \n" + " `.-----:::://////::.... \n" + " ``.....------....-. \n" + " ``........`` \n" + "\n \n" << ENDL); MGINFO_YELLOW(ENDL << "**********************************************************************" << ENDL << main_message << ENDL << ENDL From 2f4f8b1380b43ad1350c156a75867cee3483dbe5 Mon Sep 17 00:00:00 2001 From: wowario Date: Mon, 14 Jan 2019 00:14:29 +0300 Subject: [PATCH 2/2] add version name --- src/version.cpp.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.cpp.in b/src/version.cpp.in index 8fb7ca7a2..768a0d921 100644 --- a/src/version.cpp.in +++ b/src/version.cpp.in @@ -1,6 +1,6 @@ #define DEF_MONERO_VERSION_TAG "@VERSIONTAG@" #define DEF_MONERO_VERSION "0.5.0.0" -#define DEF_MONERO_RELEASE_NAME "TBD" +#define DEF_MONERO_RELEASE_NAME "Erotic EggplantEmoji" #define DEF_MONERO_VERSION_FULL DEF_MONERO_VERSION "-" DEF_MONERO_VERSION_TAG #include "version.h"