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.
29 lines
693 B
29 lines
693 B
10 years ago
|
#ifndef _VERSION_H_
|
||
|
#define _VERSION_H_
|
||
|
|
||
9 years ago
|
#define CODENAME "Purple"
|
||
9 years ago
|
|
||
|
#define STRINGIZE(x) #x
|
||
|
#define MAKE_VERSION(a,b,c) STRINGIZE(a) "." STRINGIZE(b) "." STRINGIZE(c)
|
||
|
|
||
|
#define I2PD_VERSION_MAJOR 2
|
||
8 years ago
|
#define I2PD_VERSION_MINOR 13
|
||
8 years ago
|
#define I2PD_VERSION_MICRO 0
|
||
9 years ago
|
#define I2PD_VERSION_PATCH 0
|
||
|
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)
|
||
|
#define VERSION I2PD_VERSION
|
||
9 years ago
|
|
||
|
#ifdef MESHNET
|
||
|
#define I2PD_NET_ID 3
|
||
|
#else
|
||
9 years ago
|
#define I2PD_NET_ID 2
|
||
9 years ago
|
#endif
|
||
9 years ago
|
|
||
|
#define I2P_VERSION_MAJOR 0
|
||
|
#define I2P_VERSION_MINOR 9
|
||
8 years ago
|
#define I2P_VERSION_MICRO 29
|
||
9 years ago
|
#define I2P_VERSION_PATCH 0
|
||
|
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)
|
||
10 years ago
|
|
||
|
#endif
|