From 74f9a0a8abfa06ad56e43c914d8b7eb621fd4ef9 Mon Sep 17 00:00:00 2001 From: Randy Sommerfeld <cyan@synchro.net> Date: Sat, 16 Oct 2021 08:18:12 +0700 Subject: [PATCH] Move ircd 1.9 out of beta in anticipation of Synchronet 3.19 --- exec/ircd.js | 2 +- exec/load/ircd/core.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/exec/ircd.js b/exec/ircd.js index b442bb216e..699f0fb104 100644 --- a/exec/ircd.js +++ b/exec/ircd.js @@ -37,7 +37,7 @@ load("ircd/server.js"); load("ircd/config.js"); /*** Global Constants - Always in ALL_UPPERCASE ***/ -const VERSION = "SynchronetIRCd-1.9b"; +const VERSION = "SynchronetIRCd-1.9"; const VERSION_STR = format( "Synchronet %s%s-%s%s (IRCd by Randy Sommerfeld)", system.version, system.revision, diff --git a/exec/load/ircd/core.js b/exec/load/ircd/core.js index 37ec4b5480..8e5af63490 100644 --- a/exec/load/ircd/core.js +++ b/exec/load/ircd/core.js @@ -1370,7 +1370,7 @@ function IRCClient_do_info() { this.hostname, this.servername )); - this.numeric(371, ":--=-=-=-=-=-=-=-=-=-=*[ The Synchronet IRCd v1.9b ]*=-=-=-=-=-=-=-=-=-=--"); + this.numeric(371, ":--=-=-=-=-=-=-=-=-=-=-*[ The Synchronet IRCd 1.9 ]*-=-=-=-=-=-=-=-=-=-=--"); this.numeric(371, ": IRCd Copyright 2003-2021 by Randy Sommerfeld <cyan@synchro.net>"); this.numeric(371, ":" + system.version_notice + " " + system.copyright + "."); this.numeric(371, ":--=-=-=-=-=-=-=-=-=-( A big thanks to the following )-=-=-=-=-=-=-=-=-=--"); -- GitLab