From 591b41a8a08c7e8496fc993d821c19057876ea87 Mon Sep 17 00:00:00 2001 From: "luca.mazzoleni" Date: Thu, 29 Feb 2024 18:24:00 +0100 Subject: [PATCH 1/2] - in compilazione rimossi i simboli di debug --- Compile.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Compile.bat b/Compile.bat index fd67a55..33a2afb 100644 --- a/Compile.bat +++ b/Compile.bat @@ -25,9 +25,9 @@ REM copio i sorgenti nel percorso temporaneo per i compilati ROBOCOPY . %fullPathSource%\bin\%machineName%\ /E /XF "Compile.bat" /XF ".gitignore" /XD ".git" /XF "UpdateLog.txt" REM copio i file compilati nel percorso temporaneo per i compilati -\EgtProg\Dll32\luac54 -o %fullPathSource%\bin\%machineName%\Common_ONE-PF.mlpe Common_ONE-PF.mlpe -\EgtProg\Dll32\luac54 -o %fullPathSource%\bin\%machineName%\Common_ONE-PF.mlse Common_ONE-PF.mlse -\EgtProg\Dll32\luac54 -o %fullPathSource%\bin\%machineName%\Common_ONE-PF.NUM.mlpe Common_ONE-PF.NUM.mlpe +\EgtProg\Dll32\luac54 -o %fullPathSource%\bin\%machineName%\Common_ONE-PF.mlpe -s Common_ONE-PF.mlpe +\EgtProg\Dll32\luac54 -o %fullPathSource%\bin\%machineName%\Common_ONE-PF.mlse -s Common_ONE-PF.mlse +\EgtProg\Dll32\luac54 -o %fullPathSource%\bin\%machineName%\Common_ONE-PF.NUM.mlpe -s Common_ONE-PF.NUM.mlpe REM comprimo i file compilati in uno zip pronto per essere distribuito tar.exe acvf %fullPathZip%\%machineName%.zip -C %fullPathSource%\bin\ %machineName%\*.* From c45b16c2fe9ac06ca005c601e018870d6c2953ba Mon Sep 17 00:00:00 2001 From: "andrea.villa" Date: Mon, 4 Mar 2024 11:25:06 +0100 Subject: [PATCH 2/2] - Modificato log con nome macchina - Allineamento con common ver. 2.6c2 --- Common_ONE-PF.NUM.mlpe | 2 +- Essetre-PF.mlde | 8 ++++++-- UpdateLog.txt | 3 +++ Version.lua | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Common_ONE-PF.NUM.mlpe b/Common_ONE-PF.NUM.mlpe index 4704d3a..9981d87 100644 --- a/Common_ONE-PF.NUM.mlpe +++ b/Common_ONE-PF.NUM.mlpe @@ -6,7 +6,7 @@ local BD = require( 'BeamData') -- Variabili di modulo local CSP_INFO = INFO_STD_PP.NAME..' ver.'..INFO_STD_PP.VERSION..' by EgalWare s.r.l.' -local MACHINE_INFO = 'PP_VER ver.'..PP_VER +local MACHINE_INFO = MACH_NAME..' ver.'..PP_VER local TEST_USE = false diff --git a/Essetre-PF.mlde b/Essetre-PF.mlde index 4843037..e7ec94d 100644 --- a/Essetre-PF.mlde +++ b/Essetre-PF.mlde @@ -48,13 +48,17 @@ -- 2024/02/19 ver 2.6b1 In BeamData aggiunta funzione GetBlockedAxis che sostituisce la GetChainSawBlockedAxis. -- 2024/02/23 ver 2.6b2 Allineamento con common ver. 2.6b2; in mlde aggiunte chiamate EgtAddToPackagePath -- 2024/02/29 ver 2.6c1 Allineamento con common ver. 2.6c1 +-- 2024/03/04 ver 2.6c2 Modificato log con nome macchina +-- Allineamento con common ver. 2.6c2 -- Intestazioni require( 'EmtGenerator') EgtEnableDebug( false) -PP_VER = '2.6c1' +PP_VER = '2.6c2' MIN_MACH_VER = '2.5k1' +MACH_NAME = 'Essetre-PF' + -- Carico i dati globali local sMachDir = EgtGetCurrMachineDir() @@ -68,7 +72,7 @@ if INFO_STD_PP.MIN_MACH_VER_PP_COMMON > MIN_MACH_VER then MIN_MACH_VER = INFO_STD_PP.MIN_MACH_VER_PP_COMMON end -EgtOutLog ( '**PP_VER ver.'..PP_VER..'**'..INFO_STD_PP.NAME..' ver.'..INFO_STD_PP.VERSION, 1) +EgtOutLog ( '** ' .. MACH_NAME..' '..PP_VER..' ** ( '..INFO_STD_PP.NAME..': '..INFO_STD_PP.VERSION..' - MinMach: '.. MIN_MACH_VER ..') **', 1) -- Parametri macchina NumericalControl = 'NUM_FLEX' -- NUM o (TPA) o NUM_FLEX diff --git a/UpdateLog.txt b/UpdateLog.txt index c7d99b6..961b2b3 100644 --- a/UpdateLog.txt +++ b/UpdateLog.txt @@ -1,5 +1,8 @@ ==== Essetre_StdPF Update Log ==== +Versione 2.6c2 (04/03/2024) +- (MLDE-GEN) Aggiunta variabile 'MACH_NAME' in MLDE con nome macchina + Versione 2.6c1 (29/02/2024) - (SIM) Gestione rimozione VMILL per tagli a cubetti Zig-Zag diff --git a/Version.lua b/Version.lua index 9407a1b..cd2936d 100644 --- a/Version.lua +++ b/Version.lua @@ -3,7 +3,7 @@ local InfoCommon_STD_PP = { NAME = 'Common_ONE-PF', -- nome script PP standard - VERSION = '2.6c1', -- versione script + VERSION = '2.6c2', -- versione script MIN_MACH_VER_PP_COMMON = '2.5k1' -- versione minima kernel }