Merge branch 'release/2.7a2'

This commit is contained in:
luca.mazzoleni
2025-01-23 10:43:22 +01:00
5 changed files with 15 additions and 5 deletions
+1 -1
View File
@@ -102,7 +102,7 @@ local function UpdateAuxData( sAuxFile)
-- Se definito PROJID, aggiorno
local sProjId = EgtGetStringFromIni( 'AuxData', 'PROJID', '', sAuxFile)
if sProjId ~= '' then
EgtSetInfo( BtlInfoId, 'PROJECT', sProjId)
EgtSetInfo( BtlInfoId, 'PROJECTNUMBER', sProjId)
bModif = true
end
-- Se definito PRODID, aggiorno
+4 -1
View File
@@ -466,7 +466,10 @@ function Squaring.AddMachinings( SquaringParameters, b3Squaring, nFirstOperation
EgtSetMachiningParam( MCH_MP.USERNOTES, sUserNotes)
local bOk = EgtApplyMachining( true, false)
EgtRelocateGlob( nOperationId, nFirstOperationId, GDB_IN.BEFORE)
-- la squadratura va sempre prima delle eventuali altre lavorazioni
if nFirstOperationId then
EgtRelocateGlob( nOperationId, nFirstOperationId, GDB_IN.BEFORE)
end
if not bOk then
local _, sMsg = EgtGetLastMachMgrError()
nNotOkCount = nNotOkCount + 1
+4 -1
View File
@@ -1127,7 +1127,10 @@ local function AddSquaring( SquaringParameters, b3Squaring)
return false, sMsg
end
Squaring.AddScrapRemoval( nFirstOperationId)
-- se presenti altre lavorazioni, prima di queste va eseguita la pulizia sfridi
if nFirstOperationId then
Squaring.AddScrapRemoval( nFirstOperationId)
end
return true, sMsg
end
+5 -1
View File
@@ -1,7 +1,11 @@
==== Wall Update Log ====
Versione 2.7a2 (23/01/2025)
- Fixed : in Ts7 corretto un problema che portava a rotazioni errate, introdotto con 2.7a1
- Fixed : in squadratura piccole correzioni
Versione 2.7a1 (21/01/2025)
- Modif : in BatchProcess (Ts7) aggiunta scrittura id progetto e produzione in Btm
- Modif : in Ts7 aggiunta scrittura id progetto e produzione in Btm
Versione 2.6l1 (11/12/2024)
- Modif : modificato il calcolo feature passante per gorge
+1 -1
View File
@@ -2,5 +2,5 @@
-- Gestione della versione di Wall
NAME = 'Wall'
VERSION = '2.7a1'
VERSION = '2.7a2'
MIN_EXE = '2.6k1'