Skip to content

Commit

Permalink
beta 7
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenpham committed Feb 23, 2022
1 parent 8040e33 commit fde26a4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file not shown.
Expand Up @@ -832,8 +832,8 @@
endingColumnNumber = "9223372036854775807"
startingLineNumber = "1027"
endingLineNumber = "1027"
landmarkName = "Builder::create_addGame(itemMap, moveText)"
landmarkType = "7">
landmarkName = "unknown"
landmarkType = "0">
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy
Expand Down
6 changes: 3 additions & 3 deletions src/builder.cpp
Expand Up @@ -800,6 +800,9 @@ bool Builder::create_addGame(const std::unordered_map<char*, char*>& itemMap, co
}

case TagIdx_FEN:
if (paraRecord.optionFlag & create_flag_discard_fen) {
return false;
}
fenString = s;
stringMap[TagIdx_FEN] = s;
break;
Expand Down Expand Up @@ -842,9 +845,6 @@ bool Builder::create_addGame(const std::unordered_map<char*, char*>& itemMap, co

if (strstr(it.first, "Date")) {
SqlLib::standardizeDate(s);
} else
if ((paraRecord.optionFlag & create_flag_discard_fen) && strstr(it.first, "FEN")) {
return false;
}

stringMap[it2->second] = s;
Expand Down
2 changes: 1 addition & 1 deletion src/sqllib.h
Expand Up @@ -29,7 +29,7 @@ class QueryGameRecord;
// Developer may change this string
const std::string VersionUserDatabaseString = "0.1";

const std::string VersionString = "Beta 6";
const std::string VersionString = "Beta 7";
const std::string VersionDatabaseString = "0.5";

// Current limit is about 4 billion, we can change later by changing this define
Expand Down

0 comments on commit fde26a4

Please sign in to comment.