Skip to content

Commit

Permalink
bump version & dependencies
Browse files Browse the repository at this point in the history
clean up some extra spacing
  • Loading branch information
santacrab2 committed Jul 26, 2024
1 parent 89e8dbd commit 70e9d8a
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion AutoLegalityMod/AutoModPlugins.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0" PrivateAssets="all" />
<PackageReference Include="Fody" Version="6.8.0" PrivateAssets="all" />
<PackageReference Include="PKHeX.Core" Version="24.7.3" ExcludeAssets="runtime" />
<PackageReference Include="PKHeX.Core" Version="24.7.27" ExcludeAssets="runtime" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
<ProjectReference Include="..\PKHeX.Core.AutoMod\PKHeX.Core.AutoMod.csproj" />
Expand Down
1 change: 0 additions & 1 deletion AutoLegalityMod/Plugins/AutoModPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ public virtual void NotifyDisplayLanguageChanged(string language)
if (form is null)
return;
WinFormsTranslator.TranslateInterface(form, language);

}
}
}
2 changes: 1 addition & 1 deletion AutoModTests/AutoModTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.11.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
<PackageReference Include="PKHeX.Core" Version="24.7.3" />
<PackageReference Include="PKHeX.Core" Version="24.7.27" />
<PackageReference Include="xunit" Version="2.5.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>24.7.3</Version>
<Version>24.7.27</Version>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<NeutralLanguage>en</NeutralLanguage>
Expand Down
2 changes: 1 addition & 1 deletion PKHeX.Core.AutoMod/AutoMod/Legalization/ShowdownEdits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public static void SetSpeciesLevel(this PKM pk, IBattleTemplate set, byte Form,
var gen = enc.Generation;
var maxlen = Legal.GetMaxLengthNickname(gen, finallang);
var newnick = RegenUtil.MutateNickname(set.Nickname, finallang, (GameVersion)pk.Version);
if (pk.Format < 3 && newnick?.Length == 0)
if (pk.Format < 3 && newnick.Length == 0)
newnick = SpeciesName.GetSpeciesName(pk.Species, (int)finallang);
var nickname = newnick.Length > maxlen ? newnick[..maxlen] : newnick;
if (!WordFilter.IsFiltered(nickname, out _))
Expand Down
1 change: 0 additions & 1 deletion PKHeX.Core.AutoMod/Enhancements/ModLogic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ public static IEnumerable<PKM> GenerateLivingDex(this SaveFile sav, LivingDexCon
if (!sav.Personal.IsPresentInGame(s, form) || FormInfo.IsLordForm(s, form, sav.Context) || FormInfo.IsBattleOnlyForm(s, form, sav.Generation) || FormInfo.IsFusedForm(s, form, sav.Generation) || (FormInfo.IsTotemForm(s, form) && sav.Context is not EntityContext.Gen7))
continue;
var pk = AddPKM(sav, tr, s, form, cfg.SetShiny, cfg.SetAlpha, cfg.NativeOnly);
if (pk is not null && !pklist.Any(x => x.Species == pk.Species && x.Form == pk.Form && x.Species !=869))
{
Expand Down
2 changes: 1 addition & 1 deletion PKHeX.Core.AutoMod/PKHeX.Core.AutoMod.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PKHeX.Core" Version="24.7.3" />
<PackageReference Include="PKHeX.Core" Version="24.7.27" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion PKHeX.Core.Enhancements/PKHeX.Core.Enhancements.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PKHeX.Core" Version="24.7.3" />
<PackageReference Include="PKHeX.Core" Version="24.7.27" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion PKHeX.Core.Injection/PKHeX.Core.Injection.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LibUsbDotNet" Version="2.2.29" />
<PackageReference Include="PKHeX.Core" Version="24.7.3" />
<PackageReference Include="PKHeX.Core" Version="24.7.27" />
</ItemGroup>
</Project>

0 comments on commit 70e9d8a

Please sign in to comment.