Skip to content

Commit 6f616cd

Browse files
committed
v1.3.0
1 parent 4eb9050 commit 6f616cd

File tree

51 files changed

+895
-175
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+895
-175
lines changed

.vs/quick-color-picker/v16/.suo

-1.5 KB
Binary file not shown.
Binary file not shown.

QuickColorPicker-Setup/QuickColorPicker-Setup.vdproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -383,15 +383,15 @@
383383
{
384384
"Name" = "8:Microsoft Visual Studio"
385385
"ProductName" = "8:Quick Color Picker"
386-
"ProductCode" = "8:{06C44308-7E70-41D2-913B-E5F1F815F49C}"
387-
"PackageCode" = "8:{9ED5BB0E-CE15-48DA-A73D-572D8C1A4D95}"
386+
"ProductCode" = "8:{0F737B64-7430-4295-9D11-C8D60999B5DD}"
387+
"PackageCode" = "8:{DB135D4A-660D-4C24-988F-3931D6463802}"
388388
"UpgradeCode" = "8:{B447EAAB-B636-490E-8AC4-266A6136D6BF}"
389389
"AspNetVersion" = "8:2.0.50727.0"
390390
"RestartWWWService" = "11:FALSE"
391391
"RemovePreviousVersions" = "11:TRUE"
392392
"DetectNewerInstalledVersion" = "11:TRUE"
393393
"InstallAllUsers" = "11:FALSE"
394-
"ProductVersion" = "8:1.2.2"
394+
"ProductVersion" = "8:1.3.0"
395395
"Manufacturer" = "8:Module Art"
396396
"ARPHELPTELEPHONE" = "8:"
397397
"ARPHELPLINK" = "8:"
@@ -943,7 +943,7 @@
943943
{
944944
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_E929A9F44EE84118A9055D6931B25A82"
945945
{
946-
"SourcePath" = "8:..\\quick-color-picker\\obj\\Release\\quick-color-picker.exe"
946+
"SourcePath" = "8:..\\quick-color-picker\\obj\\Debug\\quick-color-picker.exe"
947947
"TargetName" = "8:"
948948
"Tag" = "8:"
949949
"Folder" = "8:_4E105E1FB7D74141BA826FE0A8CC7FE5"
Binary file not shown.

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<h2 align="center">Install</h2>
2424
<p align="center">
25-
Windows 7, 8.1, 10 | Size: 1 MB | v1.2.2 | <a href="https://github.com/ModuleArt/quick-color-picker/releases/download/v1.2.2/QuickColorPicker-Setup.msi">Download</a><br>
25+
Windows 7, 8.1, 10 | <a href="https://github.com/ModuleArt/quick-color-picker/releases/tag/v1.3.0">v1.3.0</a> (1 MB) | v1.3.0 | <a href="https://github.com/ModuleArt/quick-color-picker/releases/download/v1.3.0/QuickColorPicker-Setup.msi">Download</a><br>
2626
Uses <a href="https://dotnet.microsoft.com/download/dotnet-framework/net472">.Net 4.7.2</a>
2727
</p>
2828

@@ -33,19 +33,12 @@
3333
<img src="/docs/screenshots/about.png">
3434
</p>
3535

36-
<h2 align="center">Additional</h2>
36+
<h2 align="center">Other "Quick" apps</h2>
3737
<p align="center">
38-
How to <a href="https://www.onmsft.com/how-to/how-to-get-dark-theme-title-bars-in-windows-10-without-changing-your-accent-colour/">enable dark title bars</a> with custom accent color in Windows 10:<br><br>
39-
<img src="/docs/darkmode.png">
38+
<a href="https://github.com/ModuleArt/quick-picture-viewer/">Quick Picture Viewer</a> - Lightweight desktop photo viewer for Windows
4039
</p>
4140

4241
<h2 align="center">Inspirers</h2>
4342
<p align="center">
4443
<a href="https://annystudio.com/software/colorpicker/">Just Color Picker</a> v5.1 by AnnyStudio
4544
</p>
46-
47-
<h2 align="center">Other "Quick" apps</h2>
48-
<p align="center">
49-
<a href="https://github.com/ModuleArt/quick-picture-viewer/">Quick Picture Viewer</a> - Lightweight desktop photo viewer for Windows<br>
50-
<a href="https://github.com/ModuleArt/quick-music-player/">Quick Music Player</a> - Lightweight desktop audio player for Windows
51-
</p>

docs/darkmode.png

-2.52 KB
Binary file not shown.

quick-color-picker/AboutForm.Designer.cs

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

quick-color-picker/AboutForm.cs

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,35 @@ namespace quick_color_picker
88
{
99
partial class AboutForm : Form
1010
{
11-
public AboutForm()
11+
public AboutForm(bool darkMode)
1212
{
13+
if (darkMode)
14+
{
15+
this.HandleCreated += new EventHandler(ThemeManager.formHandleCreated);
16+
}
17+
1318
InitializeComponent();
1419

15-
versionLabel.Text = String.Format("Version: {0}", Assembly.GetExecutingAssembly().GetName().Version.ToString().Substring(0, 5));
20+
string fullVer = Assembly.GetExecutingAssembly().GetName().Version.ToString();
21+
int lastDotIndex = fullVer.LastIndexOf('.');
22+
versionLabel.Text = String.Format("Version: {0}", fullVer.Substring(0, lastDotIndex));
23+
24+
if (IntPtr.Size == 4)
25+
{
26+
versionLabel.Text += " (x32)";
27+
}
28+
else if (IntPtr.Size == 8)
29+
{
30+
versionLabel.Text += " (x64)";
31+
}
1632

17-
if (ThemeManager.isDarkTheme())
33+
if (darkMode)
1834
{
1935
this.BackColor = ThemeManager.BackColorDark;
2036
this.ForeColor = Color.White;
2137

22-
infoGroup.ForeColor = Color.White;
23-
pagesGroup.ForeColor = Color.White;
38+
infoGroup.Paint += ThemeManager.PaintDarkGroupBox;
39+
pagesGroup.Paint += ThemeManager.PaintDarkGroupBox;
2440

2541
Color linkColor = ThemeManager.AccentColorDark;
2642

@@ -31,8 +47,6 @@ public AboutForm()
3147
licenseLink.LinkColor = linkColor;
3248

3349
okButton.BackColor = ThemeManager.SecondColorDark;
34-
35-
ThemeManager.enableDarkTitlebar(this.Handle, true);
3650
}
3751
}
3852

@@ -54,8 +68,8 @@ private void issuesLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs
5468
private void updatesLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
5569
{
5670
MainForm parent = (MainForm)this.Owner;
57-
5871
parent.checkForUpdates(true);
72+
this.Close();
5973
}
6074

6175
private void AboutForm_KeyDown(object sender, KeyEventArgs e)

quick-color-picker/DownloadForm.Designer.cs

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

0 commit comments

Comments
 (0)