Skip to content

Commit

Permalink
- missed a range check !
Browse files Browse the repository at this point in the history
  • Loading branch information
Smurf-IV committed Apr 4, 2021
1 parent e6adc37 commit 9002a4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Elucidate/Elucidate/Elucidate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<AssemblyInfoVersionSettings>YearStamp.MonthStamp.Increment.DayStamp</AssemblyInfoVersionSettings>
<PrimaryVersionType>AssemblyVersionAttribute</PrimaryVersionType>
<AssemblyInfoFilePath>Properties\AssemblyInfo.cs</AssemblyInfoFilePath>
<AssemblyVersion>2021.4.1029.4</AssemblyVersion>
<AssemblyVersion>2021.4.1030.4</AssemblyVersion>
<UpdatePackageVersion>False</UpdatePackageVersion>
<AssemblyInfoVersionType>SettingsVersion</AssemblyInfoVersionType>
<InheritWinAppVersionFrom>None</InheritWinAppVersionFrom>
Expand Down
4 changes: 2 additions & 2 deletions Elucidate/Elucidate/Objects/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
{
public static class Constants
{
public const int MinBlockSize = 256;
public const int MinBlockSize = 32;
public const int MaxBlockSize = 16384;
public const int DefaultBlockSize = 256;

public const int MinAutoSave = 0;
public const int MinAutoSave = 10;
public const int MaxAutoSave = short.MaxValue;
public const int DefaultAutoSave = 250;

Expand Down
4 changes: 2 additions & 2 deletions Elucidate/Elucidate/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
// Build Number - Increment
// Revision - Day
//
[assembly: AssemblyVersion("2021.4.1029.4")]
[assembly: AssemblyFileVersion("21.4.1029.4")]
[assembly: AssemblyVersion("2021.4.1030.4")]
[assembly: AssemblyFileVersion("21.4.1030.4")]
[assembly: NeutralResourcesLanguage("en-US")]
// TODO: Add more relevant hints here
[assembly: Dependency("System", LoadHint.Always)]
Expand Down

0 comments on commit 9002a4b

Please sign in to comment.