Skip to content

Commit

Permalink
Merge pull request #7 from Tearth/v5.1-dev
Browse files Browse the repository at this point in the history
v5.1 (Megumin), 07.06.2021
  • Loading branch information
Tearth authored Jun 7, 2021
2 parents 515eca6 + 0049814 commit 5d8be9d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Version 5.1 (Megumin), 07.06.2021
- Fixed Shredder and Fritz issues

# Version 5.0 (Megumin), 12.04.2021
- Added more detailed evaluation info in pawn hash table entry
- Added futility pruning to quiescence search
Expand Down
5 changes: 3 additions & 2 deletions Cosette/Cosette.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
<TargetFramework>net5.0</TargetFramework>
<Configurations>Debug;Release;BMI;CCRL</Configurations>
<Platforms>x64</Platforms>
<Version>5.0.0</Version>
<FileVersion>5.0.0.0</FileVersion>
<Version>5.1.0</Version>
<FileVersion>5.1.0.0</FileVersion>
<AssemblyVersion>5.1.0.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
7 changes: 1 addition & 6 deletions Cosette/Interactive/InteractiveConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,6 @@ public void Run(bool silentMode)

while (true)
{
if (!silentMode)
{
Console.Write("> ");
}

var input = Console.ReadLine();
var splitInput = input.Split(' ');
var command = splitInput[0].ToLower();
Expand Down Expand Up @@ -129,7 +124,7 @@ private void DisplayIntro()
var runtimeVersion = $"{Environment.Version.Major}.{Environment.Version.Minor}.{Environment.Version.Build}";
var executableHash = GetExecutableHash();

Console.WriteLine($"Cosette v5.0 (Megumin), 12.04.2021 @ {Environment.OSVersion} (.NET {runtimeVersion})");
Console.WriteLine($"Cosette v5.1 (Megumin), 07.06.2021 @ {Environment.OSVersion} (.NET {runtimeVersion})");
Console.WriteLine("Distributed under AGPL license, homepage and source code: https://github.com/Tearth/Cosette");
Console.WriteLine($"Executable hash: {executableHash}");
Console.WriteLine();
Expand Down
4 changes: 2 additions & 2 deletions Cosette/Uci/UciClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,12 @@ public void SetDebugMode(bool state)

private void SendName()
{
Send("id name Cosette");
Send("id name Cosette v5.1");
}

private void SendAuthor()
{
Send("id author Tearth");
Send("id author Paweł Osikowski");
}

private void SendOptions()
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Cosette
**Current version: v5.0 (Megumin), 12.04.2021**
**Current version: v5.1 (Megumin), 07.06.2021**

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!

Expand Down

0 comments on commit 5d8be9d

Please sign in to comment.