16 lines
346 B
Java
16 lines
346 B
Java
package net.i2p.itoopie;
|
|
|
|
/**
|
|
* Defines version of utilized I2PControl API and version of itoopie.
|
|
* @author hottuna
|
|
*
|
|
*/
|
|
public class ItoopieVersion {
|
|
|
|
/** Version of itoopie */
|
|
public static final String VERSION = "0.0.4-beta4";
|
|
|
|
/** Version of the I2PControl API implemented */
|
|
public static final int I2PCONTROL_API_VERSION = 1;
|
|
}
|