Skip to content

Commit

Permalink
v1.8.0 final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ElPumpo committed Jun 28, 2017
1 parent 09bffde commit 993dfd3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [1.8.0] - 2017-06-28
### Added
- Inform user to select a empty folder if using the minimal installer.
- Automatic download of `HtmlAgilityPack.dll` if not found.
Expand Down
7 changes: 4 additions & 3 deletions TinyNvidiaUpdateChecker/MainConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ private static void GpuInfo()
break;

default:
LogManager.Log("The status: '" + status + "' is not a known status!", LogManager.Level.ERROR);
LogManager.Log("The status: '" + status + "' is not a recognized status!", LogManager.Level.ERROR);
break;
}
}
Expand Down Expand Up @@ -729,6 +729,7 @@ private static void CheckDependencies()

if (!File.Exists("HtmlAgilityPack.dll")) {

Console.WriteLine();
Console.Write("Attempting to download HtmlAgilityPack.dll . . . ");

try {
Expand Down Expand Up @@ -1021,8 +1022,8 @@ private static void RunIntro()
{
if(!hasRunIntro) {
hasRunIntro = true;
Console.WriteLine("TinyNvidiaUpdateChecker v" + offlineVer + " dev build");
//Console.WriteLine("TinyNvidiaUpdateChecker v" + offlineVer);
// Console.WriteLine("TinyNvidiaUpdateChecker v" + offlineVer + " dev build");
Console.WriteLine("TinyNvidiaUpdateChecker v" + offlineVer);
Console.WriteLine();
Console.WriteLine("Copyright (C) 2016-2017 Hawaii_Beach");
Console.WriteLine("This program comes with ABSOLUTELY NO WARRANTY");
Expand Down
4 changes: 2 additions & 2 deletions TinyNvidiaUpdateChecker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
// Minor Version
// Patch
// Following the Semantic Versioning 2.0.0 standard; see http://semver.org/spec/v2.0.0.html.
[assembly: AssemblyVersion("1.7.0")]
[assembly: AssemblyFileVersion("1.7.0")]
[assembly: AssemblyVersion("1.8.0")]
[assembly: AssemblyFileVersion("1.8.0")]

0 comments on commit 993dfd3

Please sign in to comment.