Skip to content

Commit 6f7e468

Browse files
committed
UI element rearanged
1 parent a71ee70 commit 6f7e468

File tree

7 files changed

+53
-72
lines changed

7 files changed

+53
-72
lines changed

PlsqlDeveloperUtPlsqlPlugin/PlsqlDeveloperUtPlsqlPlugin/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("0.3.0.0")]
35-
[assembly: AssemblyFileVersion("0.3.0.0")]
34+
[assembly: AssemblyVersion("1.0.0")]
35+
[assembly: AssemblyFileVersion("1.0.0")]

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.Api.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("0.3.0.0")]
35-
[assembly: AssemblyFileVersion("0.3.0.0")]
34+
[assembly: AssemblyVersion("1.0.0")]
35+
[assembly: AssemblyFileVersion("1.0.0")]

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.Api/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("0.3.0.0")]
35-
[assembly: AssemblyFileVersion("0.3.0.0")]
34+
[assembly: AssemblyVersion("1.0.0")]
35+
[assembly: AssemblyFileVersion("1.0.0")]

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI.Standalone/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0")]

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0")]

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/TestRunnerWindow.Designer.cs

Lines changed: 40 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/TestRunnerWindow.cs

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System.Drawing;
55
using System.Globalization;
66
using System.IO;
7-
using System.Reflection;
87
using System.Text;
98
using System.Threading.Tasks;
109
using System.Windows.Forms;
@@ -266,27 +265,8 @@ private void SetWindowTitle(string type, string owner, string name, string proce
266265
var startTime = DateTime.Now.ToString(CultureInfo.CurrentCulture);
267266
txtStart.Text = startTime;
268267
var path = GetPath(type, owner, name, procedure);
269-
270-
if (type.Equals(RealTimeTestRunner.User))
271-
{
272-
this.Text = $"{name} {startTime}";
273-
txtTestExecution.Text = $"All Tests of {path}";
274-
}
275-
else if (type.Equals(RealTimeTestRunner.Package))
276-
{
277-
this.Text = $"{owner}.{name} {startTime}";
278-
txtTestExecution.Text = $"Package {path}";
279-
}
280-
else if (type.Equals(RealTimeTestRunner.Procedure))
281-
{
282-
this.Text = $"{owner}.{name} {startTime}";
283-
txtTestExecution.Text = $"Procedure {path}";
284-
}
285-
else if (type.Equals(RealTimeTestRunner.All))
286-
{
287-
this.Text = $"{owner} {startTime}";
288-
txtTestExecution.Text = $"All Tests of {path}";
289-
}
268+
txtPath.Text = path;
269+
this.Text = $"{path} {startTime}";
290270
}
291271

292272
private string GetPath(string type, string owner, string name, string procedure)
@@ -308,7 +288,7 @@ private string GetPath(string type, string owner, string name, string procedure)
308288

309289
private void ResetComponents()
310290
{
311-
txtTestExecution.Text = "";
291+
txtPath.Text = "";
312292
txtStart.Text = "";
313293
txtTime.Text = "";
314294

0 commit comments

Comments
 (0)