diff --git a/IntegrationEgaltech/BTL.cs b/IntegrationEgaltech/BTL.cs index 38c2438..0d38008 100644 --- a/IntegrationEgaltech/BTL.cs +++ b/IntegrationEgaltech/BTL.cs @@ -83,10 +83,6 @@ namespace ib.essetre.integration.egaltech tw.WriteLine( Constants.USERATTRIBUTE + "\"BARLEN\":" + "\"" + barLength + "\"") ; tw.WriteLine( Constants.USERATTRIBUTE + "\"PANELLEN\":" + "\"" + panelLength + "\"") ; tw.WriteLine( Constants.USERATTRIBUTE + "\"PANELWIDTH\":" + "\"" + panelWidth + "\"") ; - tw.WriteLine( Constants.USERATTRIBUTE + "\"REFPOS\":" + "\"" + RefPos.ToString() + "\"") ; - tw.WriteLine(Constants.USERATTRIBUTE + "\"PANELDELTAX\":" + "\"" + panelDeltaX + "\""); - tw.WriteLine(Constants.USERATTRIBUTE + "\"PANELDELTAY\":" + "\"" + panelDeltaY + "\""); - tw.WriteLine(Constants.USERATTRIBUTE + "\"PANELDELTAZ\":" + "\"" + panelDeltaZ + "\""); tw.WriteLine( Constants.USERATTRIBUTE + "\"PROJECT\":" + "\"" + ( IsFromProject ? "1" : "0") + "\"") ; if ( nStart <= 0) { @@ -214,10 +210,14 @@ namespace ib.essetre.integration.egaltech { using ( var tw = new StreamWriter( Path.ChangeExtension( BtlPath, ".btm"), false)) { tw.WriteLine( "[AuxData]") ; - tw.WriteLine( "LOAD90=" + barLoad90) ; tw.WriteLine( "PROGID=" + nStart.ToString()) ; tw.WriteLine( "PROJID=" + projectNumber) ; tw.WriteLine( "PRODID=" + (IsFromProject ? "0" : productionId.ToString())) ; + tw.WriteLine( "LOAD90=" + barLoad90) ; + tw.WriteLine( "REFPOS=" + RefPos.ToString()) ; + tw.WriteLine( "PANELDELTAX=" + panelDeltaX) ; + tw.WriteLine( "PANELDELTAY=" + panelDeltaY) ; + tw.WriteLine( "PANELDELTAZ=" + panelDeltaZ) ; } } catch { diff --git a/IntegrationEgaltech/Properties/AssemblyInfo.cs b/IntegrationEgaltech/Properties/AssemblyInfo.cs index 9958085..0042114 100644 --- a/IntegrationEgaltech/Properties/AssemblyInfo.cs +++ b/IntegrationEgaltech/Properties/AssemblyInfo.cs @@ -36,5 +36,5 @@ using System.Runtime.InteropServices; // È possibile specificare tutti i valori oppure impostare valori predefiniti per i numeri relativi alla revisione e alla build // usando l'asterisco '*' come illustrato di seguito: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.7.1.1")] -[assembly: AssemblyFileVersion("2.7.1.1")] +[assembly: AssemblyVersion("2.7.7.1")] +[assembly: AssemblyFileVersion("2.7.7.1")] diff --git a/IntegrationEgaltech2/IntegrationEgaltech2.aps b/IntegrationEgaltech2/IntegrationEgaltech2.aps index 17c38e3..b297e67 100644 Binary files a/IntegrationEgaltech2/IntegrationEgaltech2.aps and b/IntegrationEgaltech2/IntegrationEgaltech2.aps differ diff --git a/IntegrationEgaltech2/IntegrationEgaltech2.rc b/IntegrationEgaltech2/IntegrationEgaltech2.rc index d71da9b..bfce1c0 100644 Binary files a/IntegrationEgaltech2/IntegrationEgaltech2.rc and b/IntegrationEgaltech2/IntegrationEgaltech2.rc differ