Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
cadon committed Mar 11, 2023
2 parents e37a9c3 + ba8a5a3 commit 71221cd
Show file tree
Hide file tree
Showing 21 changed files with 683 additions and 398 deletions.
1 change: 1 addition & 0 deletions ARKBreedingStats/ARKBreedingStats.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@
<Compile Include="utils\CreatureListSorter.cs" />
<Compile Include="utils\MessageBoxes.cs" />
<Compile Include="NamePatterns\NamePatternFunctions.cs" />
<Compile Include="utils\NaturalComparer.cs" />
<Compile Include="utils\RepositoryInfo.cs" />
<Compile Include="utils\SoundFeedback.cs" />
<Compile Include="utils\Themes.cs" />
Expand Down
6 changes: 6 additions & 0 deletions ARKBreedingStats/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,12 @@
<setting name="LibraryColorInfoUseFilter" serializeAs="String">
<value>False</value>
</setting>
<setting name="UseNaturalSort" serializeAs="String">
<value>True</value>
</setting>
<setting name="NaturalSortIgnoreSpaces" serializeAs="String">
<value>False</value>
</setting>
</ARKBreedingStats.Properties.Settings>
</userSettings>
</configuration>
184 changes: 111 additions & 73 deletions ARKBreedingStats/CreatureBox.Designer.cs

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

4 changes: 2 additions & 2 deletions ARKBreedingStats/CreatureInfoInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,8 @@ public bool ShowSaveButton
set
{
btSaveChanges.Visible = value;
btAdd2Library.Size = new Size((value ? 120 : 250), 37);
btAdd2Library.Location = new Point(value ? 136 : 6, btAdd2Library.Location.Y);
btAdd2Library.Size = new Size((value ? Width / 2 : Width) - 10, btAdd2Library.Size.Height);
btAdd2Library.Location = new Point(value ? Width / 2 + 6 : 6, btAdd2Library.Location.Y);
}
}

Expand Down
24 changes: 12 additions & 12 deletions ARKBreedingStats/Form1.Designer.cs

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

Loading

0 comments on commit 71221cd

Please sign in to comment.