From b7562cc78ee821d599b03c6e58bb6e35bba0def8 Mon Sep 17 00:00:00 2001 From: Theophylakto <41908189+Theophylakto@users.noreply.github.com> Date: Mon, 8 Sep 2025 10:06:47 +0100 Subject: [PATCH 1/3] Add LASAL gitignore --- Lasal.gitignore | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Lasal.gitignore diff --git a/Lasal.gitignore b/Lasal.gitignore new file mode 100644 index 00000000..18cb15c1 --- /dev/null +++ b/Lasal.gitignore @@ -0,0 +1,32 @@ +## LASAL ### +# website: https://www.sigmatek-automation.com/en/products/engineering-tool-lasal/ + +# Lasal visu runtime folders generated during build +**/Runtime +**/BAK +**/Language + +# Lasal class runtime folders generated during build +ProjectInternal +Internal +**/Network/*/*.st +**/Drive/*.st + +# various filetypes generated at runtime or used for internal backups +*.ldi +*.bak +*.lob +*.lba +*.lcb +*.lock +*.plc +*.7z +*.zip +*.lcc +*.lds + +# opc related classes added automatically from lasal instance +!**/Class/OPC_UA/** +!**/Class/OPC_UA_Client/** +!**/Class/OPC_UA_ModuleBase/** +!**/Class/OPC_UA_AddressSpace/** \ No newline at end of file From d36057a9f899eaf955d395d95ba01f2ea5e9ce32 Mon Sep 17 00:00:00 2001 From: Tim Hatchard <41908189+TimHatchard@users.noreply.github.com> Date: Fri, 20 Mar 2026 08:53:26 +0000 Subject: [PATCH 2/3] Added lob and lba exceptions for SigCLib SigCLib requires the lob and lba files to load a project. --- Lasal.gitignore | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Lasal.gitignore b/Lasal.gitignore index 18cb15c1..f017f386 100644 --- a/Lasal.gitignore +++ b/Lasal.gitignore @@ -1,10 +1,11 @@ ## LASAL ### # website: https://www.sigmatek-automation.com/en/products/engineering-tool-lasal/ -# Lasal visu runtime folders generated during build +# Lasal screen/visu runtime folders generated during build **/Runtime **/BAK **/Language +**/TempPreview # Lasal class runtime folders generated during build ProjectInternal @@ -12,6 +13,9 @@ Internal **/Network/*/*.st **/Drive/*.st +# Bootdisk files +**/Bootdisk + # various filetypes generated at runtime or used for internal backups *.ldi *.bak @@ -25,8 +29,12 @@ Internal *.lcc *.lds +# SigCLib requires lba and lob files +!cObjLib.lob +!cObjLib.lba + # opc related classes added automatically from lasal instance !**/Class/OPC_UA/** !**/Class/OPC_UA_Client/** !**/Class/OPC_UA_ModuleBase/** -!**/Class/OPC_UA_AddressSpace/** \ No newline at end of file +!**/Class/OPC_UA_AddressSpace/** From 650203006885541b35acc56ec53ebf6f08b8f23c Mon Sep 17 00:00:00 2001 From: Tim Hatchard <41908189+TimHatchard@users.noreply.github.com> Date: Fri, 27 Mar 2026 16:00:32 +0000 Subject: [PATCH 3/3] Update Lasal.gitignore with additional entries Added maeexp and opcua entries --- Lasal.gitignore | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Lasal.gitignore b/Lasal.gitignore index f017f386..ca6417e2 100644 --- a/Lasal.gitignore +++ b/Lasal.gitignore @@ -1,19 +1,19 @@ ## LASAL ### # website: https://www.sigmatek-automation.com/en/products/engineering-tool-lasal/ -# Lasal screen/visu runtime folders generated during build +# lasal screen/visu runtime folders generated during build **/Runtime **/BAK **/Language **/TempPreview -# Lasal class runtime folders generated during build +# lasal class runtime folders generated during build ProjectInternal Internal **/Network/*/*.st **/Drive/*.st -# Bootdisk files +# bootdisk files **/Bootdisk # various filetypes generated at runtime or used for internal backups @@ -29,6 +29,11 @@ Internal *.lcc *.lds +# tag files generated by the compiler +*.mme +**/MaeExp.txt +**/MaeExp.xml + # SigCLib requires lba and lob files !cObjLib.lob !cObjLib.lba @@ -36,5 +41,7 @@ Internal # opc related classes added automatically from lasal instance !**/Class/OPC_UA/** !**/Class/OPC_UA_Client/** +!**/Class/OPC_UA_Server/** !**/Class/OPC_UA_ModuleBase/** !**/Class/OPC_UA_AddressSpace/** +!**/Class/OPC_UA_OpenSSL_v1_1_1/**