Skip to content

Commit

Permalink
1.5.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
TremblingMoeNew committed Jan 14, 2024
1 parent 50ca9a9 commit 0150a7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public List<DDCLBannerLogItem> GetBannersByVersionAndType(ulong versionid, DDCCP
// GreaterRounds

public DDCLRoundLogItem GetLastGreaterRoundByCategorizedType(DDCCPoolType type)
=> GreaterRounds.Last(x => x.CategorizedGachaType == type);
=> GreaterRounds.LastOrDefault(x => x.CategorizedGachaType == type);
// BasicRounds


Expand Down
6 changes: 3 additions & 3 deletions DodocoTales.StarRail/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("DodocoTales.StarRail")]
[assembly: AssemblyCopyright("Copyright © 2023")]
[assembly: AssemblyCopyright("Copyright © 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -51,5 +51,5 @@
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.1.1")]
[assembly: AssemblyFileVersion("1.2.1.1")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]

0 comments on commit 0150a7e

Please sign in to comment.