Orca filament profile revamp - done (#8287)

* Update Qidi profiles

* restructure orca filament lib folder

* update profiles

* add more global filaments

* check missing instantiation errors

* fix missing instantiation attribute

* delete voron generic filaments

* remove Mellow filaments

* clean profiles

* QoL: select only visible filament when select all filaments
This commit is contained in:
SoftFever
2025-02-03 21:15:17 +08:00
committed by GitHub
parent 0c190860e2
commit dc83549aa1
599 changed files with 9889 additions and 23636 deletions

View File

@@ -1,4 +1,3 @@
var m_ProfileItem;
var FilamentPriority=new Array( "pla","abs","pet","tpu","pc");
@@ -25,15 +24,6 @@ function RequestProfile()
SendWXMessage( JSON.stringify(tSend) );
}
//function RequestModelSelect()
//{
// var tSend={};
// tSend['sequence_id']=Math.round(new Date() / 1000);
// tSend['command']="request_userguide_modelselected";
//
// SendWXMessage( JSON.stringify(tSend) );
//}
function HandleStudio(pVal)
{
let strCmd=pVal['command'];
@@ -261,10 +251,10 @@ function MachineClick()
function ChooseAllFilament()
{
let bCheck=$("#FilatypeList input:first").prop("checked");
let bCheck=$("#FilatypeList input:first").prop("checked");
$("#FilatypeList input").prop("checked",bCheck);
SortFilament();
SortFilament();
}
function FilaClick()
@@ -446,11 +436,11 @@ function SelectAllFilament( nShow )
{
if( nShow==0 )
{
$('#ItemBlockArea input').prop("checked",false);
$('#ItemBlockArea .MItem:visible input').prop("checked",false);
}
else
{
$('#ItemBlockArea input').prop("checked",true);
$('#ItemBlockArea .MItem:visible input').prop("checked",true);
}
}