diff --git a/project/XPS/Web.config b/project/XPS/Web.config index da2a278..c1f62d9 100644 --- a/project/XPS/Web.config +++ b/project/XPS/Web.config @@ -153,7 +153,7 @@ - + @@ -185,10 +185,10 @@ - + - + diff --git a/project/XPS/WebUserControls/mod_ULP.ascx.cs b/project/XPS/WebUserControls/mod_ULP.ascx.cs index 14f50c7..56193fc 100644 --- a/project/XPS/WebUserControls/mod_ULP.ascx.cs +++ b/project/XPS/WebUserControls/mod_ULP.ascx.cs @@ -308,7 +308,8 @@ namespace XPS.WebUserControls /// public bool userCanDel(object codStato, object IdxObjMamma, object posizione) { - return (isAccettVisible(codStato) && otherRemains(IdxObjMamma) && lastSister(IdxObjMamma, posizione)); + return (isAccettVisible(codStato) && lastSister(IdxObjMamma, posizione)); + //return (isAccettVisible(codStato) && otherRemains(IdxObjMamma) && lastSister(IdxObjMamma, posizione)); } /// /// determina se l'utente possa editare o duplicare la riga diff --git a/project/XPS/WebUserControls/mod_dettComm.ascx.cs b/project/XPS/WebUserControls/mod_dettComm.ascx.cs index f1a6635..3ef98a3 100644 --- a/project/XPS/WebUserControls/mod_dettComm.ascx.cs +++ b/project/XPS/WebUserControls/mod_dettComm.ascx.cs @@ -370,7 +370,8 @@ namespace XPS.WebUserControls /// public bool userCanDel(object codStato, object IdxObjMamma, object posizione) { - return (isAccettVisible(codStato) && otherRemains(IdxObjMamma) && lastSister(IdxObjMamma, posizione)); + return (isAccettVisible(codStato) && lastSister(IdxObjMamma, posizione)); + //return (isAccettVisible(codStato) && otherRemains(IdxObjMamma) && lastSister(IdxObjMamma, posizione)); } /// /// imposta il modo d'uso del controllo tra i vari magazzino/segreteria/produzione/direzione diff --git a/project/XPS/WebUserControls/mod_elencoComm.ascx.cs b/project/XPS/WebUserControls/mod_elencoComm.ascx.cs index 436a068..49bfa5d 100644 --- a/project/XPS/WebUserControls/mod_elencoComm.ascx.cs +++ b/project/XPS/WebUserControls/mod_elencoComm.ascx.cs @@ -475,7 +475,12 @@ namespace XPS.WebUserControls public bool isSemaforoVisibile(object minCodStato, object maxCodStato) { bool answ = false; - if ((Convert.ToInt32(maxCodStato) > 4) && (Convert.ToInt32(minCodStato) < 6)) answ = true; // se il max è superiore a 4 qualcosa è spedibile... o spedito, ergo mostro semaforo... + try + { + if ((Convert.ToInt32(maxCodStato) > 4) && (Convert.ToInt32(minCodStato) < 6)) answ = true; // se il max è superiore a 4 qualcosa è spedibile... o spedito, ergo mostro semaforo... + } + catch + { } return answ; } /// @@ -490,8 +495,15 @@ namespace XPS.WebUserControls public string immagineDaStato(object minCodStato, object maxCodStato) { string answ = imgPath(SteamWare.tipoImg.semaforoGiallo, SteamWare.dimImg.medium, tipoFileImg.gif); - int codMin = Convert.ToInt32(minCodStato); - int codMax = Convert.ToInt32(maxCodStato); + int codMin = 0; + int codMax = 0; + try + { + codMin = Convert.ToInt32(minCodStato); + codMax = Convert.ToInt32(maxCodStato); + } + catch + { } // in base ai 2 valori relativi decido semafori... if (codMax < 5) answ = imgPath(SteamWare.tipoImg.semaforoRosso, SteamWare.dimImg.medium, tipoFileImg.gif); if (codMin > 4) answ = imgPath(SteamWare.tipoImg.semaforoVerde, SteamWare.dimImg.medium, tipoFileImg.gif); @@ -506,8 +518,15 @@ namespace XPS.WebUserControls public string toolTipDaStato(object minCodStato, object maxCodStato) { string answ = traduci("commParzProntaSpedire"); - int codMin = Convert.ToInt32(minCodStato); - int codMax = Convert.ToInt32(maxCodStato); + int codMin = 0; + int codMax = 0; + try + { + codMin = Convert.ToInt32(minCodStato); + codMax = Convert.ToInt32(maxCodStato); + } + catch + { } // in base ai 2 valori relativi decido semafori... if (codMax < 5) answ = traduci("commNonProntaSpedire"); if (codMin > 4) answ = traduci("commProntaSpedire"); @@ -673,6 +692,5 @@ namespace XPS.WebUserControls } #endregion - } } \ No newline at end of file diff --git a/project/XPS/bin/XPS.dll b/project/XPS/bin/XPS.dll index 92214c5..9706c5d 100644 Binary files a/project/XPS/bin/XPS.dll and b/project/XPS/bin/XPS.dll differ diff --git a/project/XPS/bin/XPS_data.dll b/project/XPS/bin/XPS_data.dll index f51b6ff..3815798 100644 Binary files a/project/XPS/bin/XPS_data.dll and b/project/XPS/bin/XPS_data.dll differ diff --git a/project/XPS/equaAppSettings.config b/project/XPS/equaAppSettings.config index 94131e9..d9f8d78 100644 --- a/project/XPS/equaAppSettings.config +++ b/project/XPS/equaAppSettings.config @@ -19,7 +19,7 @@ - + diff --git a/project/XPS/obj/Debug/XPS.dll b/project/XPS/obj/Debug/XPS.dll index 92214c5..c0a7b5f 100644 Binary files a/project/XPS/obj/Debug/XPS.dll and b/project/XPS/obj/Debug/XPS.dll differ diff --git a/project/XPS/obj/Release/XPS.dll b/project/XPS/obj/Release/XPS.dll index 5b42e3b..9706c5d 100644 Binary files a/project/XPS/obj/Release/XPS.dll and b/project/XPS/obj/Release/XPS.dll differ diff --git a/project/XPST/Web.config b/project/XPST/Web.config index cbe8c43..0d4bed5 100644 --- a/project/XPST/Web.config +++ b/project/XPST/Web.config @@ -153,7 +153,7 @@ - + diff --git a/project/XPST/bin/XPST.dll b/project/XPST/bin/XPST.dll index 3145db6..0d1bac2 100644 Binary files a/project/XPST/bin/XPST.dll and b/project/XPST/bin/XPST.dll differ diff --git a/project/XPST/bin/XPS_data.dll b/project/XPST/bin/XPS_data.dll index f51b6ff..3815798 100644 Binary files a/project/XPST/bin/XPS_data.dll and b/project/XPST/bin/XPS_data.dll differ diff --git a/project/XPST/equaAppSettings.config b/project/XPST/equaAppSettings.config index 237cdfc..a4cdea5 100644 --- a/project/XPST/equaAppSettings.config +++ b/project/XPST/equaAppSettings.config @@ -19,7 +19,7 @@ - + diff --git a/project/XPST/obj/Debug/ResolveAssemblyReference.cache b/project/XPST/obj/Debug/ResolveAssemblyReference.cache index 87c04f4..9130548 100644 Binary files a/project/XPST/obj/Debug/ResolveAssemblyReference.cache and b/project/XPST/obj/Debug/ResolveAssemblyReference.cache differ diff --git a/project/XPST/obj/Debug/XPST.dll b/project/XPST/obj/Debug/XPST.dll index 6fda652..757be4b 100644 Binary files a/project/XPST/obj/Debug/XPST.dll and b/project/XPST/obj/Debug/XPST.dll differ diff --git a/project/XPST/obj/Release/ResolveAssemblyReference.cache b/project/XPST/obj/Release/ResolveAssemblyReference.cache index 2ce7adf..627439b 100644 Binary files a/project/XPST/obj/Release/ResolveAssemblyReference.cache and b/project/XPST/obj/Release/ResolveAssemblyReference.cache differ diff --git a/project/XPST/obj/Release/XPST.dll b/project/XPST/obj/Release/XPST.dll index 3145db6..0d1bac2 100644 Binary files a/project/XPST/obj/Release/XPST.dll and b/project/XPST/obj/Release/XPST.dll differ diff --git a/project/XPST_deploy/Release/bin/XPST.dll b/project/XPST_deploy/Release/bin/XPST.dll index 3145db6..0d1bac2 100644 Binary files a/project/XPST_deploy/Release/bin/XPST.dll and b/project/XPST_deploy/Release/bin/XPST.dll differ diff --git a/project/XPST_deploy/Release/bin/XPS_data.dll b/project/XPST_deploy/Release/bin/XPS_data.dll index f51b6ff..3815798 100644 Binary files a/project/XPST_deploy/Release/bin/XPS_data.dll and b/project/XPST_deploy/Release/bin/XPS_data.dll differ diff --git a/project/XPST_deploy/Release/equaAppSettings.config b/project/XPST_deploy/Release/equaAppSettings.config index 237cdfc..a4cdea5 100644 --- a/project/XPST_deploy/Release/equaAppSettings.config +++ b/project/XPST_deploy/Release/equaAppSettings.config @@ -19,7 +19,7 @@ - + diff --git a/project/XPST_deploy/Release/obj/Debug/ResolveAssemblyReference.cache b/project/XPST_deploy/Release/obj/Debug/ResolveAssemblyReference.cache index 87c04f4..9130548 100644 Binary files a/project/XPST_deploy/Release/obj/Debug/ResolveAssemblyReference.cache and b/project/XPST_deploy/Release/obj/Debug/ResolveAssemblyReference.cache differ diff --git a/project/XPST_deploy/Release/obj/Debug/XPST.dll b/project/XPST_deploy/Release/obj/Debug/XPST.dll index 6fda652..757be4b 100644 Binary files a/project/XPST_deploy/Release/obj/Debug/XPST.dll and b/project/XPST_deploy/Release/obj/Debug/XPST.dll differ diff --git a/project/XPST_deploy/Release/obj/Release/ResolveAssemblyReference.cache b/project/XPST_deploy/Release/obj/Release/ResolveAssemblyReference.cache index 2ce7adf..627439b 100644 Binary files a/project/XPST_deploy/Release/obj/Release/ResolveAssemblyReference.cache and b/project/XPST_deploy/Release/obj/Release/ResolveAssemblyReference.cache differ diff --git a/project/XPST_deploy/Release/obj/Release/XPST.dll b/project/XPST_deploy/Release/obj/Release/XPST.dll index 3145db6..0d1bac2 100644 Binary files a/project/XPST_deploy/Release/obj/Release/XPST.dll and b/project/XPST_deploy/Release/obj/Release/XPST.dll differ diff --git a/project/XPST_deploy/Release/web.config b/project/XPST_deploy/Release/web.config index b1ceab9..0a62887 100644 --- a/project/XPST_deploy/Release/web.config +++ b/project/XPST_deploy/Release/web.config @@ -152,7 +152,7 @@ - + diff --git a/project/XPST_deploy/Source/Web.config b/project/XPST_deploy/Source/Web.config index cbe8c43..0d4bed5 100644 --- a/project/XPST_deploy/Source/Web.config +++ b/project/XPST_deploy/Source/Web.config @@ -153,7 +153,7 @@ - + diff --git a/project/XPST_deploy/Source/bin/XPST.dll b/project/XPST_deploy/Source/bin/XPST.dll index 3145db6..0d1bac2 100644 Binary files a/project/XPST_deploy/Source/bin/XPST.dll and b/project/XPST_deploy/Source/bin/XPST.dll differ diff --git a/project/XPST_deploy/Source/bin/XPS_data.dll b/project/XPST_deploy/Source/bin/XPS_data.dll index f51b6ff..3815798 100644 Binary files a/project/XPST_deploy/Source/bin/XPS_data.dll and b/project/XPST_deploy/Source/bin/XPS_data.dll differ diff --git a/project/XPST_deploy/Source/equaAppSettings.config b/project/XPST_deploy/Source/equaAppSettings.config index 237cdfc..a4cdea5 100644 --- a/project/XPST_deploy/Source/equaAppSettings.config +++ b/project/XPST_deploy/Source/equaAppSettings.config @@ -19,7 +19,7 @@ - + diff --git a/project/XPST_deploy/Source/obj/Debug/ResolveAssemblyReference.cache b/project/XPST_deploy/Source/obj/Debug/ResolveAssemblyReference.cache index 87c04f4..9130548 100644 Binary files a/project/XPST_deploy/Source/obj/Debug/ResolveAssemblyReference.cache and b/project/XPST_deploy/Source/obj/Debug/ResolveAssemblyReference.cache differ diff --git a/project/XPST_deploy/Source/obj/Debug/XPST.dll b/project/XPST_deploy/Source/obj/Debug/XPST.dll index 6fda652..757be4b 100644 Binary files a/project/XPST_deploy/Source/obj/Debug/XPST.dll and b/project/XPST_deploy/Source/obj/Debug/XPST.dll differ diff --git a/project/XPST_deploy/Source/obj/Release/ResolveAssemblyReference.cache b/project/XPST_deploy/Source/obj/Release/ResolveAssemblyReference.cache index 2ce7adf..627439b 100644 Binary files a/project/XPST_deploy/Source/obj/Release/ResolveAssemblyReference.cache and b/project/XPST_deploy/Source/obj/Release/ResolveAssemblyReference.cache differ diff --git a/project/XPST_deploy/Source/obj/Release/XPST.dll b/project/XPST_deploy/Source/obj/Release/XPST.dll index 3145db6..0d1bac2 100644 Binary files a/project/XPST_deploy/Source/obj/Release/XPST.dll and b/project/XPST_deploy/Source/obj/Release/XPST.dll differ diff --git a/project/XPST_installer/Release/XPST_installer.msi b/project/XPST_installer/Release/XPST_installer.msi index 4bdcf53..17ef9f7 100644 Binary files a/project/XPST_installer/Release/XPST_installer.msi and b/project/XPST_installer/Release/XPST_installer.msi differ diff --git a/project/XPST_installer/XPST_installer.vdproj b/project/XPST_installer/XPST_installer.vdproj index 72d4f56..8d72683 100644 --- a/project/XPST_installer/XPST_installer.vdproj +++ b/project/XPST_installer/XPST_installer.vdproj @@ -243,14 +243,14 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:XPST" - "ProductCode" = "8:{46210ABC-7AAF-4AF7-B7C0-E228355BC843}" - "PackageCode" = "8:{802E5502-613F-4031-A6EB-28DFF7DDF985}" + "ProductCode" = "8:{8CB36A61-7539-4409-95F4-1733CB89B6E7}" + "PackageCode" = "8:{07C54154-2635-4C68-9016-96197A326980}" "UpgradeCode" = "8:{1F4D37F4-ED5E-41B7-9D58-560A137B61D4}" "RestartWWWService" = "11:TRUE" "RemovePreviousVersions" = "11:TRUE" "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.2.130" + "ProductVersion" = "8:1.2.131" "Manufacturer" = "8:SteamWare s.r.l." "ARPHELPTELEPHONE" = "8:035-460560" "ARPHELPLINK" = "8:www.steamware.net" diff --git a/project/XPS_data/DS_applicazione.xsd b/project/XPS_data/DS_applicazione.xsd index 841eb43..7771a94 100644 --- a/project/XPS_data/DS_applicazione.xsd +++ b/project/XPS_data/DS_applicazione.xsd @@ -1070,14 +1070,14 @@ WHERE (IdxObj = @IdxObj) - + - + @@ -1090,14 +1090,14 @@ WHERE (IdxObj = @IdxObj) - + - + @@ -1110,21 +1110,21 @@ WHERE (IdxObj = @IdxObj) - + - + - + @@ -1137,98 +1137,98 @@ WHERE (IdxObj = @IdxObj) - + - + - + - + - + - + - - - + + + - - - - - - + + + + + + - + - + - + - + - + @@ -1239,385 +1239,6 @@ WHERE (IdxObj = @IdxObj) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1634,6 +1255,29 @@ WHERE (IdxObj = @IdxObj) + + + + + + + + + + + + + + + + + + + + + + + @@ -1642,6 +1286,13 @@ WHERE (IdxObj = @IdxObj) + + + + + + + @@ -1656,28 +1307,54 @@ WHERE (IdxObj = @IdxObj) - - + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - + + + + + + + + + + + + + + + @@ -1691,6 +1368,20 @@ WHERE (IdxObj = @IdxObj) + + + + + + + + + + + + + + @@ -1698,98 +1389,85 @@ WHERE (IdxObj = @IdxObj) - + - + - - - + + + + + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + - + - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1800,20 +1478,342 @@ WHERE (IdxObj = @IdxObj) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + diff --git a/project/XPS_data/DS_applicazione.xss b/project/XPS_data/DS_applicazione.xss index 4a73b7a..c8893b3 100644 --- a/project/XPS_data/DS_applicazione.xss +++ b/project/XPS_data/DS_applicazione.xss @@ -4,7 +4,7 @@ Changes to this file may cause incorrect behavior and will be lost if the code is regenerated. --> - + diff --git a/project/XPS_data/SqlScript/V 1.2/sqlUpdate_131.sql b/project/XPS_data/SqlScript/V 1.2/sqlUpdate_131.sql new file mode 100644 index 0000000..6fbc3ec --- /dev/null +++ b/project/XPS_data/SqlScript/V 1.2/sqlUpdate_131.sql @@ -0,0 +1,72 @@ +set xact_abort on +go + +begin transaction +go + +update LogStatoIstObj set CodStato = N'' where CodStato is null +go + +alter table LogStatoIstObj alter column + CodStato nvarchar(50) not null +go + +exec sp_rename 'PK_LogStatoIstObj', 'PK_LogStatoIstObj_1', 'object' +go + +alter table LogStatoIstObj drop + constraint FK_LogStatoIstObj_IstObj +go + +alter table LogStatoIstObj add + constraint FK_LogStatoIstObj_IstObj foreign key(IdxObj) references IstObj(IdxObj) on update cascade on delete cascade +go + +commit +go + + +set xact_abort on +go + +begin transaction +go + +set ANSI_NULLS on +go + +/*********************************** +* STORED PROCEDURE sp_delRow +* elimina un set di dati a partire dalla riga di una commessa +* +* modif.: S.E.L. +* il: 2008.10.23 +**************************************/ +alter PROCEDURE sp_delRow +( + @Original_Cod VARCHAR(50) +) +AS + +BEGIN TRAN + + -- cancello ULP child + DELETE FROM IstObj + WHERE (IdxObjMamma = @Original_Cod) + + -- cancello riga... + DELETE FROM IstObj + WHERE (IdxObj = @Original_Cod) + +COMMIT TRAN + +RETURN +go + +commit +go + + +-- registro versione... +INSERT INTO [dbo].[LogUpdateDb] ([Versione],[Data]) VALUES(131, GETDATE()) +GO diff --git a/project/XPS_data/XPS_data.csproj b/project/XPS_data/XPS_data.csproj index e504529..a5e047a 100644 --- a/project/XPS_data/XPS_data.csproj +++ b/project/XPS_data/XPS_data.csproj @@ -152,6 +152,7 @@ Always + diff --git a/project/XPS_data/bin/Debug/XPS_data.dll b/project/XPS_data/bin/Debug/XPS_data.dll index 437c818..f658b08 100644 Binary files a/project/XPS_data/bin/Debug/XPS_data.dll and b/project/XPS_data/bin/Debug/XPS_data.dll differ diff --git a/project/XPS_data/bin/Release/XPS_data.dll b/project/XPS_data/bin/Release/XPS_data.dll index f51b6ff..3815798 100644 Binary files a/project/XPS_data/bin/Release/XPS_data.dll and b/project/XPS_data/bin/Release/XPS_data.dll differ diff --git a/project/XPS_data/obj/Debug/TempPE/DS_applicazione.Designer.cs.dll b/project/XPS_data/obj/Debug/TempPE/DS_applicazione.Designer.cs.dll index 3840fde..02ab185 100644 Binary files a/project/XPS_data/obj/Debug/TempPE/DS_applicazione.Designer.cs.dll and b/project/XPS_data/obj/Debug/TempPE/DS_applicazione.Designer.cs.dll differ diff --git a/project/XPS_data/obj/Debug/XPS_data.dll b/project/XPS_data/obj/Debug/XPS_data.dll index 437c818..f658b08 100644 Binary files a/project/XPS_data/obj/Debug/XPS_data.dll and b/project/XPS_data/obj/Debug/XPS_data.dll differ diff --git a/project/XPS_data/obj/Release/ResolveAssemblyReference.cache b/project/XPS_data/obj/Release/ResolveAssemblyReference.cache index 452fe18..efbd714 100644 Binary files a/project/XPS_data/obj/Release/ResolveAssemblyReference.cache and b/project/XPS_data/obj/Release/ResolveAssemblyReference.cache differ diff --git a/project/XPS_data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll b/project/XPS_data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll index 7bc5409..4cd6abc 100644 Binary files a/project/XPS_data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll and b/project/XPS_data/obj/Release/TempPE/DS_applicazione.Designer.cs.dll differ diff --git a/project/XPS_data/obj/Release/XPS_data.dll b/project/XPS_data/obj/Release/XPS_data.dll index f51b6ff..3815798 100644 Binary files a/project/XPS_data/obj/Release/XPS_data.dll and b/project/XPS_data/obj/Release/XPS_data.dll differ diff --git a/project/XPS_installer/Release/XPS_installer.msi b/project/XPS_installer/Release/XPS_installer.msi index 347066b..aa46a31 100644 Binary files a/project/XPS_installer/Release/XPS_installer.msi and b/project/XPS_installer/Release/XPS_installer.msi differ diff --git a/project/XPS_installer/XPS_installer.vdproj b/project/XPS_installer/XPS_installer.vdproj index 4beec5c..fffd870 100644 --- a/project/XPS_installer/XPS_installer.vdproj +++ b/project/XPS_installer/XPS_installer.vdproj @@ -349,14 +349,14 @@ { "Name" = "8:Microsoft Visual Studio" "ProductName" = "8:XPS" - "ProductCode" = "8:{92BF7180-2725-4C26-A532-CCA18042C999}" - "PackageCode" = "8:{B9376248-A422-4231-9678-C39E41327FF7}" + "ProductCode" = "8:{4E4CB326-A1B0-44CC-94D9-CAC89A2AD218}" + "PackageCode" = "8:{507D864B-B8CF-486B-81AD-4F8BDBF778DC}" "UpgradeCode" = "8:{71B65361-FEA5-44CA-9B9A-45597433DB20}" "RestartWWWService" = "11:TRUE" "RemovePreviousVersions" = "11:TRUE" "DetectNewerInstalledVersion" = "11:TRUE" "InstallAllUsers" = "11:FALSE" - "ProductVersion" = "8:1.2.130" + "ProductVersion" = "8:1.2.131" "Manufacturer" = "8:SteamWare s.r.l." "ARPHELPTELEPHONE" = "8:035-460560" "ARPHELPLINK" = "8:www.steamware.net"