Xmage Release 1.4.20V0

This commit is contained in:
LevelX2 2017-01-08 01:36:05 +01:00
parent 13659e064c
commit ee203cf981
34 changed files with 212 additions and 208 deletions

View file

@ -58,9 +58,9 @@ public enum CardRepository {
private static final String JDBC_URL = "jdbc:h2:file:./db/cards.h2;AUTO_SERVER=TRUE";
private static final String VERSION_ENTITY_NAME = "card";
// raise this if db structure was changed
private static final long CARD_DB_VERSION = 49;
private static final long CARD_DB_VERSION = 50;
// raise this if new cards were added to the server
private static final long CARD_CONTENT_VERSION = 66;
private static final long CARD_CONTENT_VERSION = 67;
private final TreeSet<String> landTypes = new TreeSet();
private Dao<CardInfo, Object> cardDao;
private Set<String> classNames;