There are now more things to test... and we need more brave testers for the new Pico V4.
As there is no image made yet you need to have some skills. Not much, but some basic linux commands and the ability to create your own standard PI stock image using the Raspberry PI Imager program. Follow the instructions in the readme on
You can comment on your test results on the issues section on the github above (preferred) or you can of course just comment or ask for help here in this discussion group.
I made a new feature to make Picotutor testing more fun. There are plenty of software out there that can analyse a program for you, but in Picochess the Picotutor is quite unique in its way to evaluate moves with !!, ! etc. In order to take advantage of that I created a feature branch that allows Picotutor to work in Hint/ANALYSIS mode. This means that you can play through a game making moves for both sides, and Picotutor will be watching the game and evaluating every move. You can pick any famous game from the internet, play it through in Hint mode, and see if Picotutor makes the same comments as the expert humans have done. Of course you can play through your own games as well. This feature was quite tricky to make actually, and required a lot of changes to picotutor. But I have taken great care to make sure it works like in V3 as the primary target is first to get all same functions and features as in V3.
To test this new feature you need a little bit more skill... Instead of the normal git pull you need to pull the test branch like this:
cd /opt/picochess
git pull issue30-picotutor-hintmode
Some git basics: To get back to normal master branch if you want to test without this new Hint feature do:
git checkout master .... or
git switch master
So testing a branch requires a little bit of skill.
It would be best to test this branch as everything that works in master branch should work here, and after I have completed my own testing of this branch I will merge this issue30-picotutor-hintmode branch and after that everyone will get it. But first we need to test it.
BR, Johan