a whole new (themable) look and feel including dark mode. Check the View>themes menu
We’ve also fixed loads of issues, especially around the online studies:
change-every-frame stimuli no longer memory leak
no more hacks for ending loops: just use nameofLoop.finished as in your normal Code Components
There has been a lot of work on this code and big thanks to the brand new team that have been working on it (especially @TParsons who created the theming system and color schemes)
It’s a good time to download and test things out and get your lab techs to install before term starts (assuming there’s going to be any in-person teaching at your institution!)
Hi Jon,
Congratulations for the new release of psychopy. I was wondering if I have to update installed psychopy or uninstall and install again the new version?
This update is quite useful to me. However, if I upgrade to this version, will there be any changes to the experiment that I had designed in a previous version?
You can set your experiment to run on a particular version (which is different to the one curently installed) and then you shouldn’t have any differences. Take a look in Experiment Settings.
I would typically develop a study with the installed version and then fix it to that particular version when the study is working/running
My computer is a win10 operating system. Why can’t I open the application, nothing happens when I click on the icon, 2020.1.3 version is no problem, my computer has both pthon3.8 and psycharm installed, thank you for your answer.
Sorry, yes, having some issues with building on the mac right now. It works for my own developer installation but we need to look into a new method for building as a mac bundle. Packaging pains
I don’t know. It works fine on my Win10 laptop. Were there any problems during install? Did you install “For everyone” or just for you? Try restarting and then reinstalling
Thank you for your reply, 2020.1.3 and all previous versions are fine. I also reinstalled the system, 2020.2.1 opened once after reinstalling the system, then restarted the computer and it continued not to open.i installed for everyone
I don’t know why my computer 2020.2.0 and 2020.2.1 are having this problem, that is, clicking on the icon doesn’t respond. In the task manager, you can see that python appears for a second and then disappears, can I let you see what the problem is by uploading logs etc.?
OK, that actually looks useful info, yes. I think your system has a font format in it that we’re failing to read but we should be able to disable trying easily enough. Could you help debugging that?
Could you edit the file fontfile.py and around line 739 add a try…except like this:
try:
face = ft.Face(str(fontPath))
except Exception:
print("failed to load file {}".format(fontPath))
(make sure the indentation is correct - the try should be indented from the line above and match the line about if monospace:)
What I’m trying to find out is what type of file we should be avoiding so I want to know what the file is
Ok I’ve uploaded 2020.2.2 already! That should handle the issue with unknown font formats, although I am still curious to know what the invalid font file was.