X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fnncp.go;h=8ee3fb0d595a56719dca9bdc6dff7b78bba4aa54;hb=7c507e7ddba9fe5557df06c860fe9fa6197ba2e1;hp=ce0c0d71fbc082bbf2768df5893306891606c32e;hpb=c739099968c854f36cb0166934cd2ce66bd69d5d;p=nncp.git diff --git a/src/nncp.go b/src/nncp.go index ce0c0d7..8ee3fb0 100644 --- a/src/nncp.go +++ b/src/nncp.go @@ -1,6 +1,6 @@ /* NNCP -- Node to Node copy, utilities for store-and-forward data exchange -Copyright (C) 2016-2022 Sergey Matveev +Copyright (C) 2016-2023 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,7 +24,9 @@ import ( ) const ( - Warranty = `This program is free software: you can redistribute it and/or modify + Warranty = `Copyright (C) 2016-2023 Sergey Matveev + +This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License. @@ -40,7 +42,7 @@ along with this program. If not, see .` const Base32Encoded32Len = 52 var ( - Version string = "8.3.0" + Version string = "8.8.4" Base32Codec *base32.Encoding = base32.StdEncoding.WithPadding(base32.NoPadding) ) @@ -48,13 +50,3 @@ var ( func VersionGet() string { return "NNCP version " + Version + " built with " + runtime.Version() } - -func UsageHeader() string { - return VersionGet() + ` -Copyright (C) 2016-2022 Sergey Matveev -License GPLv3: GNU GPL version 3 -This is free software: you are free to change and redistribute it. -There is NO WARRANTY, to the extent permitted by law. - -` -}