Skip to content

Commit

Permalink
fix: disabled logging of job header by default
Browse files Browse the repository at this point in the history
  • Loading branch information
crowbait committed Apr 28, 2023
1 parent 7829cf2 commit e8c5d88
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Classes/Operation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Operation {
public bool IsCreate { get; set; } = false; //copies only folder structure, with zero-length files
public bool IsLoggingFiles { get; set; } = true; //nfl doesn't list files names
public bool IsLoggingFolders { get; set; } = true; //ndl doesn't list folder names
public bool IsLoggingJobHeader { get; set; } = true; //njh doesn't log job header
public bool IsLoggingJobHeader { get; set; } = false; //njh doesn't log job header
public bool IsLoggingJobSummary { get; set; } = false; //njs doesn't log job summary
public bool IsLoggingProgress { get; set; } = true; //np doesn't show copying progress
public bool IsLoggingSize { get; set; } = true; //ns doesn't log file size
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Important: the program is targeting Windows 10.0.18362 and *might or might not*

## To-do

- re-check default operation settings
- button to run script now
- dialog for default settings of new operations, save to registry

#### Delayed indefinitely
Expand Down
4 changes: 2 additions & 2 deletions robocopy-gui.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyVersion>2.1.1</AssemblyVersion>
<FileVersion>2.1.1</FileVersion>
<AssemblyVersion>2.2.0</AssemblyVersion>
<FileVersion>2.2.0</FileVersion>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.18362.0</TargetFramework>
<Nullable>enable</Nullable>
Expand Down

0 comments on commit e8c5d88

Please sign in to comment.