I don't know if this is the best place to report issues on the nightly builds (or whether I should post each issue individually) but here are a few issues noted in the 19 Sept build (Assembly 1.0.3184.100).
i) "Object Expected" JS error on each step of the install wizard. This is reported at line 235 for the following code:
Code:addEvent(window, "load", function(){ resizePanel('Panel1', false); });
Seems the addEvent() method is undefined at this point.
ii) ArgumentException occurs when installing Boost with the message "The user has no umbraco contextid - try logging in".
This occurs when the install has found an existing (v4) database; if the install is re-run without an existing database, it succeeds and then displays the "Boost is installed/Install Nitros" page.
iii) Creating new items, e.g. templates, causes a JS error when the Create button is clicked:
"Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus."
This is occurring in the function:
Code:
function setFocusOnText() {
for (var i=0;i<document.forms[0].length;i++) {
if (document.forms[0][i].type == 'text') {
document.forms[0][i].focus();
break;
}
}
}
The function is trying to set focus on the 'rename' textbox, though by this time, it looks like the page is no longer visible (because the dialog has closed) and so the control is no longer available.
iv) Don't know if it's 'by design' but the "Boost Master" template no longer includes the top navigation or footer links in it, so there's no way to navigate to the child pages until you manually add them to the master template.
Hope this helps.
Dave.