Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Apr 22, 2023
2 parents 4ace471 + 0c69f92 commit d09673b
Show file tree
Hide file tree
Showing 22 changed files with 4,356 additions and 74 deletions.
6 changes: 6 additions & 0 deletions ARKBreedingStats/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,12 @@
<setting name="NaturalSortIgnoreSpaces" serializeAs="String">
<value>False</value>
</setting>
<setting name="ShowColorIdOnRegionButtons" serializeAs="String">
<value>False</value>
</setting>
<setting name="AlwaysShowAllColorRegions" serializeAs="String">
<value>False</value>
</setting>
</ARKBreedingStats.Properties.Settings>
</userSettings>
</configuration>
2 changes: 1 addition & 1 deletion ARKBreedingStats/Form1.Designer.cs

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

4 changes: 3 additions & 1 deletion ARKBreedingStats/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2925,7 +2925,7 @@ private void UpdateTempCreatureDropDown()
{
toolStripCBTempCreatures.Items.Clear();
foreach (CreatureValues cv in _creatureCollection.creaturesValues)
toolStripCBTempCreatures.Items.Add($"{cv.name} ({cv.Species?.name ?? "unknown species"})");
toolStripCBTempCreatures.Items.Add($"{cv.name} ({cv.Species?.name ?? "unknown species"}, Lv {cv.level})");
}

/// <summary>
Expand Down Expand Up @@ -3106,6 +3106,7 @@ private void LoadMultipliersFromTestCase(testCases.ExtractionTestCase etc)
// set all stat-multipliers from testCase
_creatureCollection.serverMultipliers = etc.serverMultipliers.Copy(true);
_creatureCollection.singlePlayerSettings = etc.singleplayerSettings;
_creatureCollection.AtlasSettings = etc.AtlasSettings;
_creatureCollection.allowMoreThanHundredImprinting = etc.allowMoreThanHundredPercentImprinting;
_creatureCollection.maxWildLevel = etc.maxWildLevel;

Expand Down Expand Up @@ -3139,6 +3140,7 @@ private void tsBtAddAsExtractionTest_Click(object sender, EventArgs e)
etc.serverMultipliers = _creatureCollection.serverMultipliers;
etc.Species = speciesSelector1.SelectedSpecies;
etc.singleplayerSettings = _creatureCollection.singlePlayerSettings;
etc.AtlasSettings = _creatureCollection.AtlasSettings;
etc.allowMoreThanHundredPercentImprinting = _creatureCollection.allowMoreThanHundredImprinting;
etc.maxWildLevel = _creatureCollection.maxWildLevel;

Expand Down
2 changes: 1 addition & 1 deletion ARKBreedingStats/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("0.51.1.0")]
[assembly: AssemblyFileVersion("0.52.0.0")]
[assembly: NeutralResourcesLanguage("en")]

24 changes: 24 additions & 0 deletions ARKBreedingStats/Properties/Settings.Designer.cs

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

6 changes: 6 additions & 0 deletions ARKBreedingStats/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -545,5 +545,11 @@
<Setting Name="NaturalSortIgnoreSpaces" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="ShowColorIdOnRegionButtons" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="AlwaysShowAllColorRegions" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>
2 changes: 1 addition & 1 deletion ARKBreedingStats/_manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"ARK Smart Breeding": {
"Id": "ARK Smart Breeding",
"Category": "main",
"version": "0.51.1.0"
"version": "0.52.0.0"
},
"SpeciesColorImages": {
"Id": "SpeciesColorImages",
Expand Down
Loading

0 comments on commit d09673b

Please sign in to comment.