1. first formal version of macos 2. add the bambu networking plugin install logic 3. auto compute the wipe volume when filament change 4. add the logic of wiping into support 5. refine the GUI layout and icons, improve the gui apperance in lots of small places 6. serveral improve to support 7. support AMS auto-mapping 8. disable lots of unstable features: such as params table, media file download, HMS 9. fix serveral kinds of bugs 10. update the document of building 11. ...
80 lines
No EOL
1.5 KiB
JavaScript
80 lines
No EOL
1.5 KiB
JavaScript
|
|
function OnInit()
|
|
{
|
|
TranslatePage();
|
|
|
|
SendPrivacySelect();
|
|
}
|
|
|
|
|
|
function SendPrivacySelect()
|
|
{
|
|
let nVal="refuse";
|
|
if( $('#ChoosePrivacy').is(':checked') )
|
|
nVal="agree";
|
|
|
|
var tSend={};
|
|
tSend['sequence_id']=Math.round(new Date() / 1000);
|
|
tSend['command']="user_private_choice";
|
|
tSend['data']={};
|
|
tSend['data']['action']=nVal;
|
|
|
|
SendWXMessage( JSON.stringify(tSend) );
|
|
}
|
|
|
|
|
|
function GotoNextPage()
|
|
{
|
|
RequestProfile();
|
|
}
|
|
|
|
function RequestProfile()
|
|
{
|
|
var tSend={};
|
|
tSend['sequence_id']=Math.round(new Date() / 1000);
|
|
tSend['command']="request_userguide_profile";
|
|
|
|
SendWXMessage( JSON.stringify(tSend) );
|
|
}
|
|
|
|
function HandleStudio( pVal )
|
|
{
|
|
let strCmd=pVal['command'];
|
|
//alert(strCmd);
|
|
|
|
if(strCmd=='response_userguide_profile')
|
|
{
|
|
HandleModelInfo(pVal['response']);
|
|
}
|
|
}
|
|
|
|
function HandleModelInfo( pVal )
|
|
{
|
|
let Modellist=pVal["model"];
|
|
let nModel=Modellist.length;
|
|
|
|
if(nModel==1)
|
|
{
|
|
// let pModel=Modellist[0];
|
|
//
|
|
// var tSend={};
|
|
// tSend['sequence_id']=Math.round(new Date() / 1000);
|
|
// tSend['command']="save_userguide_models";
|
|
// tSend['data']={};
|
|
//
|
|
// let ModelName=pModel['model'];
|
|
//
|
|
// tSend['data'][ModelName]={};
|
|
// tSend['data'][ModelName]['model']=pModel['model'];
|
|
// tSend['data'][ModelName]['nozzle_diameter']=pModel['nozzle_diameter'];
|
|
// tSend['data'][ModelName]['vendor']=pModel['vendor'];
|
|
//
|
|
// SendWXMessage( JSON.stringify(tSend) );
|
|
|
|
window.location.href="../22/index.html";
|
|
|
|
return;
|
|
}
|
|
|
|
window.location.href="../21/index.html";
|
|
} |