mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
/* |
|
* Copyright (c) 2013-2022, The PurpleI2P Project |
|
* |
|
* This file is part of Purple i2pd project and licensed under BSD3 |
|
* |
|
* See full license text in LICENSE file at top of project tree |
|
*/ |
|
|
|
#ifndef _VERSION_H_ |
|
#define _VERSION_H_ |
|
|
|
#define CODENAME "Purple" |
|
|
|
#define STRINGIZE(x) #x |
|
#define MAKE_VERSION(a,b,c) STRINGIZE(a) "." STRINGIZE(b) "." STRINGIZE(c) |
|
#define MAKE_VERSION_NUMBER(a,b,c) ((a*100+b)*100+c) |
|
|
|
#define I2PD_VERSION_MAJOR 2 |
|
#define I2PD_VERSION_MINOR 41 |
|
#define I2PD_VERSION_MICRO 0 |
|
#define I2PD_VERSION_PATCH 0 |
|
#ifdef GITVER |
|
#define I2PD_VERSION GITVER |
|
#else |
|
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO) |
|
#endif |
|
|
|
#define VERSION I2PD_VERSION |
|
|
|
#define I2PD_NET_ID 2 |
|
|
|
#define I2P_VERSION_MAJOR 0 |
|
#define I2P_VERSION_MINOR 9 |
|
#define I2P_VERSION_MICRO 53 |
|
#define I2P_VERSION_PATCH 0 |
|
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO) |
|
#define I2P_VERSION_NUMBER MAKE_VERSION_NUMBER(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO) |
|
|
|
#endif
|
|
|