3
0
mirror of https://github.com/ergochat/ergo.git synced 2025-02-11 03:50:47 +01:00
ergo/irc/constants.go

28 lines
767 B
Go
Raw Normal View History

// Copyright (c) 2012-2014 Jeremy Latt
// Copyright (c) 2014-2015 Edmund Huber
2017-03-27 22:15:02 +10:00
// Copyright (c) 2016-2017 Daniel Oaks <daniel@danieloaks.net>
// released under the MIT license
2012-04-17 18:49:14 -07:00
package irc
import "fmt"
2012-04-17 18:49:14 -07:00
const (
2016-10-13 17:36:44 +10:00
// SemVer is the semantic version of Oragono.
2018-04-16 02:28:06 +10:00
SemVer = "0.12.0-unreleased"
)
var (
2018-04-09 10:08:54 +10:00
// Commit is the current git commit.
Commit = ""
2016-10-13 17:36:44 +10:00
// Ver is the full version of Oragono, used in responses to clients.
Ver = fmt.Sprintf("oragono-%s", SemVer)
2016-10-23 20:24:02 +10:00
// maxLastArgLength is used to simply cap off the final argument when creating general messages where we need to select a limit.
// for instance, in MONITOR lists, RPL_ISUPPORT lists, etc.
maxLastArgLength = 400
// maxTargets is the maximum number of targets for PRIVMSG and NOTICE.
maxTargets = 4
)