diff --git a/LuaLibs/BeamExec.lua b/LuaLibs/BeamExec.lua index 7565fd6..b225083 100644 --- a/LuaLibs/BeamExec.lua +++ b/LuaLibs/BeamExec.lua @@ -949,13 +949,6 @@ local function OrderFeatures( vProc, b3Raw, nPartId) if Hcut.Identify( B2) then return false end - -- se uno dipende dall'altro - if B1.Dependency and B1.Dependency.ExecBefore and B1.Dependency.ExecBefore.Id == B2.Id then - return true - end - if B2.Dependency and B2.Dependency.ExecBefore and B2.Dependency.ExecBefore.Id == B1.Id then - return false - end -- se uno di testa e non l'altro, privilegio quello di testa (a meno che non siano dei fori) if B1.Head ~= B2.Head and not Drill.Identify(B1) and not Drill.Identify(B2) then return B1.Head diff --git a/UpdateLog.txt b/UpdateLog.txt index d52e489..cb173f1 100644 --- a/UpdateLog.txt +++ b/UpdateLog.txt @@ -1,4 +1,7 @@ ==== Beam Update Log ==== +Versione 3.1c1 (04/03/2026) +- Fixed : correzione in ordinamento (fori vs tagli) +- Fixed : in drilling rimosso preforo duplicato Versione 3.1b1 (26/02/2026) - Added : in LapJoint lunghe gestito Q14 per lavorare discorde diff --git a/Version.lua b/Version.lua index 604b3d1..4a4b840 100644 --- a/Version.lua +++ b/Version.lua @@ -2,5 +2,5 @@ -- Gestione della versione di Beam NAME = 'Beam' -VERSION = '3.1b1' +VERSION = '3.1c1' MIN_EXE = '3.1b1'