V 2.31 - BETA Build 65

- fix Pitch direction in Tuning dialog
pull/104/head
bm98 7 years ago
parent fd2cacf70e
commit c7540f666c

@ -1132,7 +1132,7 @@ namespace SCJMapper_V2.OGL
double fout = m_livePitch.ScaledOut( y ); // 0 .. 1000.0
lblPInput.Text = ( i_y / 1000.0 ).ToString( "0.00" ); lblPOutput.Text = ( fout ).ToString( "0.00" );
// calculate new direction vector
m.Y = m_livePitch.InvertedSign * ( ( !cbPuse.Checked ) ? fout : 0 ) * m_msElapsed * DegPerMS;
m.Y = m_livePitch.InvertedSign * ( ( !cbPuse.Checked ) ? -fout : 0 ) * m_msElapsed * DegPerMS; // 20170801: fix - Must use inverted out value
}
// Roll

@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "Cassini (SC handle)" )]
[assembly: AssemblyProduct( "SCJMapper" )]
[assembly: AssemblyCopyright( "Copyright (c) 2016 M.Burri" )]
[assembly: AssemblyCopyright("Copyright (c) 2017 M.Burri")]
[assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )]
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion( "2.30.0.64" )]
[assembly: AssemblyFileVersion( "2.30.0.64" )]
[assembly: AssemblyVersion("2.31.0.65")]
[assembly: AssemblyFileVersion("2.31.0.65")]

@ -26,8 +26,8 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>64</ApplicationRevision>
<ApplicationVersion>2.30.0.%2a</ApplicationVersion>
<ApplicationRevision>65</ApplicationRevision>
<ApplicationVersion>2.31.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>

Loading…
Cancel
Save