Skip to content

Commit 8500891

Browse files
committed
💪 Version 1.4.2
1 parent 8a69d90 commit 8500891

5 files changed

Lines changed: 10 additions & 5 deletions

File tree

‎Cloaks/Cloaks+.csproj.user‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<ProjectView>ShowAllFiles</ProjectView>
4+
<ProjectView>ProjectFiles</ProjectView>
55
</PropertyGroup>
66
</Project>

‎Cloaks/DialogueBox.xaml.cs‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ public static bool Show(string title, string message, MainWindow main)
3131
{
3232

3333
DialogueBox w = new DialogueBox(title, message, false, main, false);
34+
w.Activate();
3435
w.ShowDialog();
3536

3637
return w.result;
@@ -39,6 +40,7 @@ public static bool Show(string title, string message, MainWindow main)
3940
public static bool ShowError(string title, string message, MainWindow main)
4041
{
4142
DialogueBox w = new DialogueBox(title, message, true, main, false);
43+
w.Activate();
4244
w.ShowDialog();
4345

4446
return w.result;
@@ -47,6 +49,7 @@ public static bool ShowError(string title, string message, MainWindow main)
4749
public static bool ShowEULA(MainWindow main)
4850
{
4951
DialogueBox w = new DialogueBox("Cloaks+ End User License Agreement", @"By clicking 'I Agree' below, you agree to the Cloaks+ End User License Agreement. To view the contents of the agreement, click the 'EULA' button below.", false, main, true);
52+
w.Activate();
5053
w.ShowDialog();
5154

5255
return w.result;

‎Cloaks/InstallProgress.xaml.cs‎

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ private InstallProgress(string title)
2121

2222
public static void Show(string title, MainWindow main)
2323
{
24-
new InstallProgress(title).ShowDialog();
24+
InstallProgress w = new InstallProgress(title);
25+
w.Activate();
26+
w.ShowDialog();
2527
main.Activate();
2628
}
2729

‎Cloaks/Properties/AssemblyInfo.cs‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
)]
2020

2121

22-
[assembly: AssemblyVersion("1.4.1.0")]
23-
[assembly: AssemblyFileVersion("1.4.1.0")]
22+
[assembly: AssemblyVersion("1.4.2.0")]
23+
[assembly: AssemblyFileVersion("1.4.2.0")]

‎Cloaks/app.manifest‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
3-
<assemblyIdentity version="1.4.1.0" name="Cloaks.app"/>
3+
<assemblyIdentity version="1.4.2.0" name="Cloaks.app"/>
44
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
55
<security>
66
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">

0 commit comments

Comments
 (0)