Skip to content

Commit

Permalink
Rename nbfc-probe to ec-probe
Browse files Browse the repository at this point in the history
  • Loading branch information
hirschmann committed Dec 12, 2015
1 parent 1bf01ea commit e0a2167
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 14 deletions.
8 changes: 5 additions & 3 deletions Core/NbfcProbe/CommandLineOptions/CustomHelpGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@ public string GetHelp(IParserConfig<Verbs> config)
sb.AppendLine();
sb.AppendLine();
sb.AppendLine("commands:");
sb.AppendLine(" * ec-dump");
sb.AppendLine(" dump");
sb.AppendLine(" Dump all registers that are present in EC memory as hexadecimal table.");
sb.AppendLine(" * ec-read <register>");
sb.AppendLine();
sb.AppendLine(" read <register>");
sb.AppendLine(" Print the value of the given EC register number.");
sb.AppendLine(" * ec-write <register> <value> [-v|--verbose]");
sb.AppendLine();
sb.AppendLine(" write <register> <value> [-v|--verbose]");
sb.AppendLine(" Write the given value to the given EC register number.");
sb.AppendLine(" If the verbose option is set, read and print the updated value.");
sb.AppendLine();
Expand Down
8 changes: 4 additions & 4 deletions Core/NbfcProbe/CommandLineOptions/Verbs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

namespace NbfcProbe.CommandLineOptions
{
[ApplicationInfo(Name = "nbfc-probe.exe", Description = "NoteBook FanControl probe tool.")]
[ApplicationInfo(Name = "ec-probe.exe", Description = "NoteBook FanControl EC probe tool.")]
public class Verbs
{
[Verb("ec-read", "Read from EC registers")]
[Verb("read", "Read from EC register")]
public ECReadVerb ECRead { get; set; }

[Verb("ec-write", "Write to EC registers")]
[Verb("write", "Write to EC register")]
public ECWriteVerb ECWrite { get; set; }

[Verb("ec-dump", "Dump all EC registers")]
[Verb("dump", "Dump all EC registers")]
public ECDumpVerb ECDump { get; set; }
}
}
2 changes: 1 addition & 1 deletion Core/NbfcProbe/NbfcProbe.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ProjectGuid>{F6104868-81A7-4D09-8AD2-8CF261D58319}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>NbfcProbe</RootNamespace>
<AssemblyName>nbfc-probe</AssemblyName>
<AssemblyName>ec-probe</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Core/NbfcProbe/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.1.1.0")]
// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]

[assembly: AssemblyFileVersionAttribute("1.1.0.0")]
[assembly: AssemblyFileVersionAttribute("1.1.1.0")]
[assembly: ComVisibleAttribute(false)]
[assembly: NeutralResourcesLanguageAttribute("en")]
[assembly: GuidAttribute("c7e7cd6a-71f9-4489-8a59-55756d6d6de4")]
8 changes: 4 additions & 4 deletions Windows/Setup/NbfcSetup/Application.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@
</Component>

<Component Id="App.NbfcProbe" Guid="96351E80-C0DD-4845-BAC5-065EA49114BC">
<File Id="nbfc_probe.exe"
Name="nbfc_probe.exe"
<File Id="ec_probe.exe"
Name="ec-probe.exe"
DiskId="1"
Vital="no"
Vital="yes"
KeyPath="yes"
Source="$(var.NbfcProbe.TargetDir)nbfc-probe.exe">
Source="$(var.NbfcProbe.TargetDir)ec-probe.exe">

<?if $(var.Configuration) = "Release"?>
<netfx:NativeImage Id="NbfcProbe.NativeImage" Platform="all" />
Expand Down

0 comments on commit e0a2167

Please sign in to comment.