Skip to content

Commit

Permalink
Update 3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vektor9999 committed Dec 8, 2023
1 parent 40406b4 commit 25800c9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion Vcc.Nolvus.Dashboard/Controls/ErrorsPanel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using System.Threading.Tasks;
using System.Windows.Forms;
using Vcc.Nolvus.Core.Errors;
using Vcc.Nolvus.Core.Services;

namespace Vcc.Nolvus.Dashboard.Controls
{
Expand Down Expand Up @@ -40,7 +41,7 @@ public void LoadMods(List<FaultyMod> Mods)
ErrorPanel.Width = this.Width;


Top += 40;
Top += System.Convert.ToInt16(40 * ServiceSingleton.Dashboard.ScalingFactor);

Controls.Add(ErrorPanel);
}
Expand Down

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

3 changes: 1 addition & 2 deletions Vcc.Nolvus.Dashboard/Frames/Installer/InstallFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,8 @@ await ServiceSingleton.Packages.InstallModList(new ModInstallSettings()
}
else
{
ServiceSingleton.Dashboard.AdditionalSecondaryInfo(string.Format("Error(s) : {0}/{1}", ServiceSingleton.Packages.ErrorHandler.ErrorsCount, "(Errors will be displayed at the end of the installation)"));
ServiceSingleton.Dashboard.AdditionalSecondaryInfo(string.Format("Error(s) : {0} {1}", ServiceSingleton.Packages.ErrorHandler.ErrorsCount, "(Errors will be displayed at the end of the installation)"));
}
},
OnMaxErrors = () =>
{
Expand Down
4 changes: 2 additions & 2 deletions Vcc.Nolvus.Dashboard/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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("3.5.1")]
[assembly: AssemblyFileVersion("3.5.1.0")]
[assembly: AssemblyVersion("3.5.2")]
[assembly: AssemblyFileVersion("3.5.2.0")]

0 comments on commit 25800c9

Please sign in to comment.