innaircbot/src/main/java/InnaIrcBot/GlobalData.java

15 lines
597 B
Java
Raw Normal View History

2018-12-16 17:27:44 +03:00
package InnaIrcBot;
public class GlobalData {
2021-12-29 21:10:17 +03:00
private static final String version = "InnaIrcBot v0.9.2 \"Литке\"";
2018-12-16 17:27:44 +03:00
public static synchronized String getAppVersion(){
return String.format("%s, %s %s %s", version,
System.getProperty("os.name"),
System.getProperty("os.version"),
System.getProperty("os.arch"));
2018-12-16 17:27:44 +03:00
}
public static final String applicationHomePage = "https://github.com/developersu/InnaIrcBot";
2020-10-20 03:37:20 +03:00
public static final int CHANNEL_QUEUE_CAPACITY = 500;
2020-11-01 18:35:14 +03:00
public static final int LINKS_COOLDOWN_FRAME = 3;
2018-12-16 17:27:44 +03:00
}