Skip to content

Commit 5d8be9d

Browse files
authored
Merge pull request #7 from Tearth/v5.1-dev
v5.1 (Megumin), 07.06.2021
2 parents 515eca6 + 0049814 commit 5d8be9d

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Version 5.1 (Megumin), 07.06.2021
2+
- Fixed Shredder and Fritz issues
3+
14
# Version 5.0 (Megumin), 12.04.2021
25
- Added more detailed evaluation info in pawn hash table entry
36
- Added futility pruning to quiescence search

Cosette/Cosette.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
<TargetFramework>net5.0</TargetFramework>
66
<Configurations>Debug;Release;BMI;CCRL</Configurations>
77
<Platforms>x64</Platforms>
8-
<Version>5.0.0</Version>
9-
<FileVersion>5.0.0.0</FileVersion>
8+
<Version>5.1.0</Version>
9+
<FileVersion>5.1.0.0</FileVersion>
10+
<AssemblyVersion>5.1.0.0</AssemblyVersion>
1011
</PropertyGroup>
1112

1213
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Cosette/Interactive/InteractiveConsole.cs

+1-6
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,6 @@ public void Run(bool silentMode)
5959

6060
while (true)
6161
{
62-
if (!silentMode)
63-
{
64-
Console.Write("> ");
65-
}
66-
6762
var input = Console.ReadLine();
6863
var splitInput = input.Split(' ');
6964
var command = splitInput[0].ToLower();
@@ -129,7 +124,7 @@ private void DisplayIntro()
129124
var runtimeVersion = $"{Environment.Version.Major}.{Environment.Version.Minor}.{Environment.Version.Build}";
130125
var executableHash = GetExecutableHash();
131126

132-
Console.WriteLine($"Cosette v5.0 (Megumin), 12.04.2021 @ {Environment.OSVersion} (.NET {runtimeVersion})");
127+
Console.WriteLine($"Cosette v5.1 (Megumin), 07.06.2021 @ {Environment.OSVersion} (.NET {runtimeVersion})");
133128
Console.WriteLine("Distributed under AGPL license, homepage and source code: https://github.com/Tearth/Cosette");
134129
Console.WriteLine($"Executable hash: {executableHash}");
135130
Console.WriteLine();

Cosette/Uci/UciClient.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ public void SetDebugMode(bool state)
9595

9696
private void SendName()
9797
{
98-
Send("id name Cosette");
98+
Send("id name Cosette v5.1");
9999
}
100100

101101
private void SendAuthor()
102102
{
103-
Send("id author Tearth");
103+
Send("id author Paweł Osikowski");
104104
}
105105

106106
private void SendOptions()

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Cosette
2-
**Current version: v5.0 (Megumin), 12.04.2021**
2+
**Current version: v5.1 (Megumin), 07.06.2021**
33

44
An UCI-compliant chess engine written in C# for .NET platform, with **[an official profile on CCRL](http://ccrl.chessdom.com/ccrl/404/cgi/compare_engines.cgi?family=Cosette&print=Rating+list&print=Results+table&print=LOS+table&print=Ponder+hit+table&print=Eval+difference+table&print=Comopp+gamenum+table&print=Overlap+table&print=Score+with+common+opponents)** (Computer Chess Rating Lists) where you can check the best strength estimation. Feel free to visit **[a dedicated forum thread](http://kirill-kryukov.com/chess/discussion-board/viewtopic.php?f=7&t=12402)** for Cosette releases and discussions!
55

0 commit comments

Comments
 (0)