diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 0000000..008df05 --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,12 @@ +# Authors +WinChess is developed and maintained by: +- **Touil Ghassen** � Project lead, software architecture, and chess-engine development +- **[BAZIZ Chafia](https://github.com/ChiChiNour310)** � Developer +- **[BOUAKAZ Ahlem](https://github.com/ahlambkz0923)** � Developer +## Contributors +Additional contributors are acknowledged through the Git commit history and +the GitHub contributors list. +## Authorship policy +Authors and co-authors must be credited only for work to which they actually +contributed. Joint commits should use Git's `Co-authored-by` trailers with an +email address associated with the contributor's GitHub account. diff --git a/ChessGUI/ChessGUI.csproj b/ChessGUI/ChessGUI.csproj index 5e4e265..0edda81 100644 --- a/ChessGUI/ChessGUI.csproj +++ b/ChessGUI/ChessGUI.csproj @@ -1,12 +1,12 @@ + - WinExe net10.0-windows WinChess WinChess - Windows chess application with a native C++ engine, WPF GUI, and UCI host. - Ahlem Chafia; WinChess contributors + Open-source Windows chess application with a native C++ engine, WPF GUI, and UCI host. + Touil Ghassen; BAZIZ Chafia; BOUAKAZ Ahlem 0.1.0 https://github.com/binarylab2022-del/WinChess git @@ -20,8 +20,10 @@ prevents BadImageFormatException and keeps deployment deterministic. --> x64 false + BinaryLab + Copyright © 2026 Touil Ghassen, BAZIZ Chafia, BOUAKAZ Ahlem + https://github.com/binarylab2022-del/WinChess - @@ -36,7 +38,6 @@ - PreserveNewest @@ -75,23 +76,16 @@ PreserveNewest - - - $(MSBuildProjectDirectory)\..\bin\x64\$(Configuration)\ChessDLL.dll - + - - + \ No newline at end of file diff --git a/ChessUCI/ChessUCI.cpp b/ChessUCI/ChessUCI.cpp index 35292eb..384d5f0 100644 --- a/ChessUCI/ChessUCI.cpp +++ b/ChessUCI/ChessUCI.cpp @@ -529,7 +529,7 @@ int main() { const std::string command = tokens[0]; if (command == "uci") { writeLine("id name WinChess"); - writeLine("id author Ahlem Chafia"); + writeLine("id author Touil Ghassen, BAZIZ Chafia, BOUAKAZ Ahlem"); writeLine("option name Hash type spin default 64 min 1 max " + std::to_string(g_getHashMaximum())); writeLine("option name Move Overhead type spin default 30 min 0 max 5000"); writeLine("option name Use PVS type check default true");