Skip to content

Commit

Permalink
ver bump, download miners link change
Browse files Browse the repository at this point in the history
  • Loading branch information
S74nk0 committed Feb 18, 2019
1 parent 74ca857 commit bef2773
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/NiceHashMinerLegacy/International.cs
Expand Up @@ -26,7 +26,8 @@ private static List<Language> GetLanguages()

try
{
var di = new DirectoryInfo("langs");
var langsDir = Path.Combine(Environment.CurrentDirectory, "langs");
var di = new DirectoryInfo(langsDir);
var files = di.GetFiles("*.lang");

foreach (var fi in files)
Expand Down
1 change: 0 additions & 1 deletion src/NiceHashMinerLegacy/Program.cs
Expand Up @@ -134,7 +134,6 @@ static void Main(string[] argv)
}
}
Application.Run(new Form_Main());

}
else
{
Expand Down
4 changes: 2 additions & 2 deletions src/NiceHashMinerLegacy/Properties/AssemblyInfo.cs
Expand Up @@ -34,5 +34,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.9.0.13")]
[assembly: AssemblyFileVersion("1.9.0.13")]
[assembly: AssemblyVersion("1.9.0.14")]
[assembly: AssemblyFileVersion("1.9.0.14")]
4 changes: 2 additions & 2 deletions src/NiceHashMinerLegacy/Utils/MinersDownloadManager.cs
Expand Up @@ -3,12 +3,12 @@
public static class MinersDownloadManager
{
public static readonly DownloadSetup StandardDlSetup = new DownloadSetup(
"http://github.com/NiceHash/NiceHashMinerLegacy/releases/download/1.9.0.10/bin_1_9_0_10.zip",
"https://github.com/nicehash/NiceHashMinerLegacy/releases/download/1.9.0.12/bin_1_9_0_12.zip",
"bins.zip",
"bin");

public static readonly DownloadSetup ThirdPartyDlSetup = new DownloadSetup(
"https://github.com/NiceHash/NiceHashMinerLegacy/releases/download/1.9.0.11/bin_3rdparty_1_9_0_11.zip",
"https://github.com/nicehash/NiceHashMinerLegacy/releases/download/1.9.0.12/bin_3rdparty_1_9_0_12.zip",
"bins_3rdparty.zip",
"bin_3rdparty");
}
Expand Down

0 comments on commit bef2773

Please sign in to comment.