Skip to content

Commit

Permalink
Resolved license BgInfo EULA prompt - Added /nolicpromt back as defau…
Browse files Browse the repository at this point in the history
…lt BgInfo switch; 1.2.1
  • Loading branch information
Corey Blaz committed Sep 22, 2020
1 parent 9da5249 commit a14e81c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion BgAssist-Config/BgAssistConfigMainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private void btnSetConfigPath_Click(object sender, EventArgs e)
Title = "Set BgInfo Configuration File Path",
CheckFileExists = true,
CheckPathExists = true,
Filter = "BgInfo Configuration Files (*.big)|"
Filter = "BgInfo Configuration Files (*.bgi)|"
};

openFileDialogConfigPath.FileOk += delegate (object s, CancelEventArgs ev)
Expand Down
2 changes: 1 addition & 1 deletion BgAssist/BigAssistMainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion BgAssist/BigAssistMainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ static string BuildBginfoArguments()
var builder = new StringBuilder();

string bginfoTimer = config.AppSettings.Settings["BgInfoTimer"].Value;
builder.Append(bginfoConfig + " /timer:" + bginfoTimer);
builder.Append(bginfoConfig + " /nolicprompt /timer:" + bginfoTimer);

if (Convert.ToBoolean(config.AppSettings.Settings["BgInfoPopup"].Value))
{
Expand Down
12 changes: 6 additions & 6 deletions BgAssist/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Wallpaper Refresher")]
[assembly: AssemblyDescription("Detects display settings changes and refreshes desktop wallpaper.")]
[assembly: AssemblyTitle("BgAssist")]
[assembly: AssemblyDescription("VDI desktop background assistant.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Wallpaper Refresher")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyProduct("BgAssist")]
[assembly: AssemblyCopyright("")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,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.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]

0 comments on commit a14e81c

Please sign in to comment.