Skip to content

Commit

Permalink
1.0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
creedflan738 committed Nov 23, 2024
1 parent 48b0f23 commit 82b5086
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 15 deletions.
2 changes: 1 addition & 1 deletion inno/inno_setup_file.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "YAHB"
#define MyAppVersion "1.0.8.0"
#define MyAppVersion "1.0.9.0"
#define MyAppPublisher "asdfjkl"
#define MyAppURL "https://github.com/asdfjkl/yahb"
#define MyAppExeName "yahb.exe"
Expand Down
4 changes: 2 additions & 2 deletions yahb/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ public Config()
public void checkConsistency()
{
// check if we have a valid source directory
if(!string.IsNullOrEmpty(this.sourceDirectory) || !System.IO.Directory.Exists(this.sourceDirectory))
{
if(string.IsNullOrEmpty(this.sourceDirectory) || !System.IO.Directory.Exists(this.sourceDirectory))
{
throw new ArgumentException("error: no valid source directory defined or directory does not exist");
}
// create full path from relative path
Expand Down
9 changes: 0 additions & 9 deletions yahb/ParseCmdLine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -197,15 +197,6 @@ public void DisplayVerboseHelp()
Console.WriteLine("");
Console.WriteLine(" /help :: display this help screen");
Console.WriteLine("");
Console.WriteLine(" /id:FILENAME :: supply a list of Input Directories to copy which");
Console.WriteLine(" are stored line by line in a textfile FILENAME.");
Console.WriteLine(" If this options is used, <source-dir> can be");
Console.WriteLine(" omitted. If both <source-dir> and /id:FILENAME");
Console.WriteLine(" are present, all directories will be copied.");
Console.WriteLine(" NOTE that if /s is provided, it will be ");
Console.WriteLine(" applied to the list of input directories, and");
Console.WriteLine(" will also be applied to <source-dir>.");
Console.WriteLine("");
Console.WriteLine(" /list :: do not copy anything, just list all files");
Console.WriteLine("");
Console.WriteLine(" /log:FILENAME :: write all output (log) to a textfile FILNAME.");
Expand Down
4 changes: 2 additions & 2 deletions yahb/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
// indem Sie "*" wie unten gezeigt eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.8.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]
[assembly: AssemblyVersion("1.0.9.0")]
[assembly: AssemblyFileVersion("1.0.9.0")]
2 changes: 1 addition & 1 deletion yahb/yahb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<TargetFrameworkProfile />
<IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
Expand All @@ -26,7 +27,6 @@
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
Expand Down

0 comments on commit 82b5086

Please sign in to comment.