Skip to content

Commit fb7bba7

Browse files
committed
v2.5.7
1 parent a76c4f3 commit fb7bba7

16 files changed

+13
-71
lines changed

.vs/QuickLibrary/v16/.suo

-4.5 KB
Binary file not shown.

QuickLibrary/DownloadForm.Designer.cs

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

QuickLibrary/DownloadForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ public DownloadForm(string url, bool darkMode, string updating, string downloadi
2727

2828
InitializeComponent();
2929
(new DropShadow()).ApplyShadows(this);
30-
SetDraggableControls(new List<Control>() { titleLabel, statusLabel });
30+
SetDraggableControls(new List<Control>() { statusLabel });
3131

32-
titleLabel.Text = updating;
32+
Text = updating;
3333
statusLabel.Text = downloading;
3434
updateButton.Text = install;
3535
cancelButton.Text = NativeMan.GetMessageBoxText(NativeMan.DialogBoxCommandID.IDCANCEL);

QuickLibrary/OkForm.Designer.cs

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

QuickLibrary/OkForm.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Drawing;
43
using System.Windows.Forms;
54

@@ -11,7 +10,6 @@ public OkForm(string messageText, string windowTitle, bool darkMode = false)
1110
{
1211
InitializeComponent();
1312
(new DropShadow()).ApplyShadows(this);
14-
SetDraggableControls(new List<Control>() { titleLabel });
1513

1614
Text = windowTitle;
1715
okBtn.Text = NativeMan.GetMessageBoxText(NativeMan.DialogBoxCommandID.IDOK);

QuickLibrary/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
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("2.5.6")]
36-
[assembly: AssemblyFileVersion("2.5.6")]
35+
[assembly: AssemblyVersion("2.5.7")]
36+
[assembly: AssemblyFileVersion("2.5.7")]
3737
[assembly: NeutralResourcesLanguage("en")]

QuickLibrary/UpdateForm.Designer.cs

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

QuickLibrary/UpdateForm.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Drawing;
43
using System.Windows.Forms;
54

@@ -13,11 +12,10 @@ public UpdateForm(bool darkMode, string title, string message, string dwnldBtnTe
1312
{
1413
InitializeComponent();
1514
(new DropShadow()).ApplyShadows(this);
16-
SetDraggableControls(new List<Control>() { titleLabel });
1715

1816
Height = 244;
1917

20-
titleLabel.Text = title;
18+
Text = title;
2119
boxReleaseNotes.Text = whatsNewBtnText;
2220
messageTextBox.Text = string.Format(message, UpdateChecker.LatestRelease.TagName, "v" + UpdateChecker.CurrentVersion);
2321
buttonYes.Text = dwnldBtnText;

QuickLibrary/YesNoForm.Designer.cs

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

QuickLibrary/YesNoForm.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Drawing;
43
using System.Windows.Forms;
54

@@ -20,7 +19,6 @@ internal YesNoForm(
2019
{
2120
InitializeComponent();
2221
(new DropShadow()).ApplyShadows(this);
23-
SetDraggableControls(new List<Control>() { titleLabel });
2422

2523
yesBtn.Text = yesBtnText.Length == 0 ? NativeMan.GetMessageBoxText(NativeMan.DialogBoxCommandID.IDYES) : yesBtnText;
2624
if (yesBtnImage != null)

0 commit comments

Comments
 (0)