Upgrade: Deleted LANG_PL compilation condition, disabled legalizator before test, and version to 3.9.3134.111
Cause: 1. Unnecessary and mandatory user verification before the test, in addition, a bug appears: the "Approval by legalizer" window is displayed behind the main application window. The window was only needed for the Polish project. 2. `LANG_PL` constant in `TBF.csproj` was no longer needed. 3. Assembly version and file version in `AssemblyInfo.cs` needed to be incremented to `3.9.3134.111`. Solution: 1. Made `altProcNameLabel` and `altProcNameTextBox` always visible and disabled specific UI controls in `ProcedureDlg.cs`. 2. Removed `LANG_PL` from `DefineConstants` in `TBF.csproj`. 3. Updated assembly version and file version in `AssemblyInfo.cs` to `3.9.3134.111`.
This commit is contained in:
parent
e38c6c1199
commit
79de40515a
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
[assembly: AssemblyVersion("3.9.3134.110")]
|
||||
[assembly: AssemblyFileVersion("3.9.3134.110")]
|
||||
[assembly: AssemblyVersion("3.9.3134.111")]
|
||||
[assembly: AssemblyFileVersion("3.9.3134.111")]
|
||||
|
||||
@ -51,7 +51,7 @@
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;CAMERA;LANG_PL;IPERL;</DefineConstants>
|
||||
<DefineConstants>TRACE;CAMERA;IPERL;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
|
||||
@ -410,12 +410,12 @@ namespace TBF.UI.Procedures
|
||||
LoadUISettings();
|
||||
|
||||
/// Enable/disable/show/hide controls in General tab
|
||||
#if LANG_PL
|
||||
//#if LANG_PL
|
||||
altProcNameLabel.Visible = true;
|
||||
altProcNameTextBox.Visible = true;
|
||||
//altProcPeriodLabel.Visible = true;
|
||||
//altProcPeriodTextBox.Visible = true;
|
||||
#endif
|
||||
//#endif
|
||||
procNameTextBox.Enabled = false;
|
||||
descriptionTextBox.Enabled = false;
|
||||
variantTextBox.Enabled = false;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user