Skip to content
This repository was archived by the owner on Jan 9, 2021. It is now read-only.

Commit 47273c6

Browse files
author
nicehashdev
committed
Small fixes
- Launcher project included in solution - Launcher speed display format #.##
1 parent 4f2c53a commit 47273c6

3 files changed

Lines changed: 34 additions & 10 deletions

File tree

cpuminer.sln

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,49 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2013
3-
VisualStudioVersion = 12.0.30723.0
3+
VisualStudioVersion = 12.0.40629.0
44
MinimumVisualStudioVersion = 10.0.40219.1
55
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpuminer", "cpuminer.vcxproj", "{36DC07F9-A4A6-4877-A146-1B960083CF6F}"
66
EndProject
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "launcher", "launcher\launcher.csproj", "{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}"
8+
EndProject
79
Global
810
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9-
Debug|x64 = Debug|x64
11+
Debug|Any CPU = Debug|Any CPU
12+
Debug|Mixed Platforms = Debug|Mixed Platforms
1013
Debug|Win32 = Debug|Win32
11-
Release|x64 = Release|x64
14+
Debug|x64 = Debug|x64
15+
Release|Any CPU = Release|Any CPU
16+
Release|Mixed Platforms = Release|Mixed Platforms
1217
Release|Win32 = Release|Win32
18+
Release|x64 = Release|x64
1319
EndGlobalSection
1420
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|x64.ActiveCfg = Debug|x64
21+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|Any CPU.ActiveCfg = Debug|Win32
22+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
23+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|Mixed Platforms.Build.0 = Debug|Win32
1624
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|Win32.ActiveCfg = Debug|Win32
17-
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|x64.Build.0 = Debug|x64
1825
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|Win32.Build.0 = Debug|Win32
19-
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|x64.ActiveCfg = Release|x64
20-
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|x64.Build.0 = Release|x64
26+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|x64.ActiveCfg = Debug|x64
27+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Debug|x64.Build.0 = Debug|x64
28+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|Any CPU.ActiveCfg = Release|Win32
29+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|Mixed Platforms.ActiveCfg = Release|Win32
30+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|Mixed Platforms.Build.0 = Release|Win32
2131
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|Win32.ActiveCfg = Release|Win32
2232
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|Win32.Build.0 = Release|Win32
33+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|x64.ActiveCfg = Release|x64
34+
{36DC07F9-A4A6-4877-A146-1B960083CF6F}.Release|x64.Build.0 = Release|x64
35+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
38+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
39+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Debug|Win32.ActiveCfg = Debug|Any CPU
40+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Debug|x64.ActiveCfg = Debug|Any CPU
41+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Release|Any CPU.ActiveCfg = Release|Any CPU
42+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Release|Any CPU.Build.0 = Release|Any CPU
43+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
44+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Release|Mixed Platforms.Build.0 = Release|Any CPU
45+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Release|Win32.ActiveCfg = Release|Any CPU
46+
{6E2EF9A8-68D5-4115-8B1F-3B3976AB1370}.Release|x64.ActiveCfg = Release|Any CPU
2347
EndGlobalSection
2448
GlobalSection(SolutionProperties) = preSolution
2549
HideSolutionNode = FALSE

launcher/Form1.Designer.cs

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

launcher/Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ private void T_Tick(object sender, EventArgs e)
4949
if (Rate > 0 && NHS != null)
5050
{
5151
NHS.accepted_speed *= 1000000; // from GHs to kHs
52-
toolStripStatusLabel2.Text = NHS.accepted_speed.ToString("F4");
52+
toolStripStatusLabel2.Text = NHS.accepted_speed.ToString("F2");
5353
toolStripStatusLabel4.Text = (Rate * NHS.accepted_speed).ToString("F8");
5454
toolStripStatusLabel6.Text = NHS.balance.ToString("F8");
5555
}

0 commit comments

Comments
 (0)