mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Use DD-MM-YY as date format
In engine name and version number. No functional change.
This commit is contained in:
parent
373503f4a9
commit
1d1fcf80a0
1 changed files with 7 additions and 7 deletions
14
src/misc.cpp
14
src/misc.cpp
|
@ -31,16 +31,16 @@
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
/// Version number. If Version is left empty, then Tag plus current
|
/// Version number. If Version is left empty, then Tag plus current
|
||||||
/// date (in the format YYMMDD) is used as a version number.
|
/// date, in the format DD-MM-YY, are used as a version number.
|
||||||
|
|
||||||
static const string Version = "";
|
static const string Version = "";
|
||||||
static const string Tag = "";
|
static const string Tag = "";
|
||||||
|
|
||||||
|
|
||||||
/// engine_info() returns the full name of the current Stockfish version.
|
/// engine_info() returns the full name of the current Stockfish version. This
|
||||||
/// This will be either "Stockfish YYMMDD" (where YYMMDD is the date when
|
/// will be either "Stockfish <Tag> DD-MM-YY" (where DD-MM-YY is the date when
|
||||||
/// the program was compiled) or "Stockfish <version number>", depending
|
/// the program was compiled) or "Stockfish <Version>", depending on whether
|
||||||
/// on whether Version is empty.
|
/// Version is empty.
|
||||||
|
|
||||||
const string engine_info(bool to_uci) {
|
const string engine_info(bool to_uci) {
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ const string engine_info(bool to_uci) {
|
||||||
{
|
{
|
||||||
date >> month >> day >> year;
|
date >> month >> day >> year;
|
||||||
|
|
||||||
s << Tag << setfill('0') << " " << year.substr(2)
|
s << Tag << string(Tag.empty() ? "" : " ") << setfill('0') << setw(2) << day
|
||||||
<< setw(2) << (1 + months.find(month) / 4) << setw(2) << day;
|
<< "-" << setw(2) << (1 + months.find(month) / 4) << "-" << year.substr(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
s << cpu64 << popcnt << (to_uci ? "\nid author ": " by ")
|
s << cpu64 << popcnt << (to_uci ? "\nid author ": " by ")
|
||||||
|
|
Loading…
Add table
Reference in a new issue