Version history¶
For each version below, this page lists that version’s most important changes, or any minor changes that I considered important to know about when upgrading.
Version 1.2¶
- If a page is submitted automatically by a timeout, oTree will attempt to save the incomplete form. See Forms submitted by timeout
- oTree now has a participant chat app
Version 1.1¶
Here are the changes in oTree-core 1.1:
- group_by_arrival_time
- Customizing the admin interface (admin reports)
botworker
is automatically launched as part oftimeoutworker
orrunprodserver
Version 1.0¶
Here are the main changes in 1.0:
- You can configure sessions in the admin interface
(modifying
SESSION_CONFIGS
parameters without changing the source code). See Configure sessions. - Performance improvements
- The default for the
payoff
field is now0
, notNone
. (Make sure your code doesn’t rely onpayoff
beingNone
.)
Version 0.8¶
The bot system has been overhauled, and there are some changes to the bot API. See the notes here.
Browser bots now work together with otree runserver
.
Version 0.7¶
Version 0.7 beta is available.
The main new feature is browser bots. There are also some changes to the admin UI (e.g. demo full-screen mode is now resizable).
Version 0.6¶
Version 0.6 is available. You can install it as usual:
pip3 install -U otree-core
otree resetdb
Here are some changes:
- The rooms feature is more fully developed and functional.
- Various improvements to the admin interface
- If you update a template you don’t have to reload the server
- Chinese now uses the proper
zh-hans
language code runprodserver
now defaults to port 8000 (before was 5000)
Version 0.5¶
What’s new¶
oTree 0.5 is now released.
It has a different architecture based on WebSockets. It runs faster and supports more concurrent players.
It also has a “Server Check” feature in the admin interface that checks if your server is set up properly.
Server deployment¶
Redis needs to be installed on your server.
If using Heroku, you should install Heroku’s Redis add-on,
then run heroku restart
.
Then update your requirements_base.txt
so it contains the right version of otree-core
.
This will tell Heroku which version of oTree to install.
(The currently installed version of otree-core
is listed in the output of pip3 freeze
).
In your project’s root directory, find the file Procfile
,
change its contents to the following, and if using Heroku, turn on both dynos:
web: otree webandworkers
timeoutworker: otree timeoutworker