Skip to content

Commit

Permalink
Update repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Laeng committed Sep 18, 2021
1 parent 6e7eafe commit 81ebff8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions SCTools/SCTool_Redesigned/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.2.1.0")]
[assembly: AssemblyFileVersion("1.2.1.0")]
2 changes: 1 addition & 1 deletion SCTools/SCTool_Redesigned/Settings/LocalizationSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public LocalizationSource(string name, string repository, UpdateRepositoryType t
public static LocalizationSource DefaultBaseModding { get; } = new LocalizationSource("Base Modding Package", "defterai/starcitizenmodding", UpdateRepositoryType.GitHub);
public static LocalizationSource DefaultRussian { get; } = new LocalizationSource("русский", "n1ghter/sc_ru", UpdateRepositoryType.GitHub);
public static LocalizationSource DefaultUkrainian { get; } = new LocalizationSource("Український", "slyf0x-ua/sc_uk", UpdateRepositoryType.GitHub);
public static LocalizationSource DefaultKorean { get; } = new LocalizationSource("한국어", "xhatagon/sc_ko", UpdateRepositoryType.GitHub,true);
public static LocalizationSource DefaultKorean { get; } = new LocalizationSource("한국어", "sckorea/sc_ko", UpdateRepositoryType.GitHub,true);
public static LocalizationSource DefaultPolish { get; } = new LocalizationSource("Polskie", "frosty-el-banana/sc_pl", UpdateRepositoryType.GitHub);
public static LocalizationSource DefaultChinese { get; } = new LocalizationSource("简体中文", "terrencetodd/sc_cn_zh", UpdateRepositoryType.GitHub);

Expand Down
4 changes: 2 additions & 2 deletions SCTools/SCTool_Redesigned/Utils/RepositoryManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ private static CustomGitHubRepository GetCustomGitHubRepository(bool cache = tru
var customGithubRepo = new CustomGitHubRepository(
HttpNetClient.Client, GitHubDownloadType.Sources, CustomUpdateInfo.Factory.NewWithVersionByName(), "SCTools", GetLocalizationSource().Repository);

if (GetLocalizationSource().Repository.Equals("xhatagon/sc_ko"))
if (GetLocalizationSource().Repository.Equals("sckorea/sc_ko"))
{
customGithubRepo.ChangeReleasesUrl("https://sc.galaxyhub.kr/api/v4/release/all?account_id=xhatagon&repository_name=sc_ko&status=0");
customGithubRepo.ChangeReleasesUrl("https://sc.galaxyhub.kr/api/v4/release/all?account_id=sckorea&repository_name=sc_ko&status=0");
}

//customGithubRepo.UpdateAsync(cancellationToken).Wait();
Expand Down

0 comments on commit 81ebff8

Please sign in to comment.