Skip to content

Commit

Permalink
Merge pull request #12 from SCKorea/feature-pyropreview
Browse files Browse the repository at this point in the history
Feature pyropreview, temporary change that should be reverted.
  • Loading branch information
marona42 authored Dec 20, 2024
2 parents a184793 + 2f184f1 commit 5b2488a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions SCTools/SCTool_Redesigned/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("SCKorea Team")]
[assembly: AssemblyProduct("Shatagon Patcher")]
[assembly: AssemblyCopyright("Copyright © 2021-2023 SCKorea Team")]
[assembly: AssemblyCopyright("Copyright © 2021-2025 SCKorea Team")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -51,5 +51,5 @@
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.4.3")]
[assembly: AssemblyFileVersion("1.3.4.3")]
[assembly: AssemblyVersion("1.3.4.4")]
[assembly: AssemblyFileVersion("1.3.4.4")]
2 changes: 2 additions & 0 deletions SCTools/SCToolsLib/Global/GameFolders.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ private static bool IsGameModeFolderName(string folderName)
{
if (string.Compare(folderName, mode.ToString(), StringComparison.OrdinalIgnoreCase) == 0)
return true;
if (string.Compare(folderName, "4.0_PREVIEW") == 0)
return true;
}
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion SCTools/SCToolsLib/Global/GameInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public sealed class GameInfo

public static GameInfo? Create(GameMode mode, string gamePath)
{
var rootFolderPath = GameConstants.GetGameModePath(gamePath, mode);
var rootFolderPath = Path.Combine(gamePath, "4.0_PREVIEW");
if (Directory.Exists(rootFolderPath))
{
var exeFilePath = GameConstants.GetGameExePath(rootFolderPath);
Expand Down

0 comments on commit 5b2488a

Please sign in to comment.