The Kineo adapt-devtools extension is a very useful tool, that makes it easier to develop and test Adapt courses.
But something seems to be broken after the latest framework update.
It seems that the "jquery.js" file referenced in the "assets/map.html" file is the problem (it cannot be loaded).
I suspect that the problem is that the framework, after dropping IE8 support, is using jquery v2.
I tried changing the line:
<script type="text/javascript" src="../libraries/jquery.js"></script>
to:
<script type="text/javascript" src="../libraries/jquery.v2.min.js"></script>
and that seemed to do the trick - but that is just me hacking, and I am not sure if there is anything else that needs to be changed (or it needs t be fixed in another way).