Skip to content

Commit 428a9f1

Browse files
committed
Fix some region links
1 parent 3043f7b commit 428a9f1

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

Hi3Helper.Plugin.DNA/Exports.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Hi3Helper.Plugin.DNA;
1313
public partial class DNAbyss : SharedStaticV1Ext<DNAbyss> // 2025-08-18: We use generic version of SharedStatic<T> to add support for game launch API.
1414
// Though, the devs can still use the old SharedStatic without any compatibility issue.
1515
{
16-
static DNAbyss() => Load<DNAPlugin>(!RuntimeFeature.IsDynamicCodeCompiled ? new Core.Management.GameVersion(0, 6, 0, 0) : default); // Loads the IPlugin instance as DNAPlugin.
16+
static DNAbyss() => Load<DNAPlugin>(!RuntimeFeature.IsDynamicCodeCompiled ? new Core.Management.GameVersion(0, 6, 1, 0) : default); // Loads the IPlugin instance as DNAPlugin.
1717

1818
[UnmanagedCallersOnly(EntryPoint = "TryGetApiExport", CallConvs = [typeof(CallConvCdecl)])]
1919
public static unsafe int TryGetApiExport(char* exportName, void** delegateP) =>

Hi3Helper.Plugin.DNA/Hi3Helper.Plugin.DNA.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<Company>Collapse Launcher Team</Company>
1919
<Authors>$(Company). neon-nyan, Cry0, bagusnl, shatyuka, gablm.</Authors>
2020
<Copyright>Copyright 2022-2025 $(Company)</Copyright>
21-
<Version>0.6.0</Version>
21+
<Version>0.6.1</Version>
2222
<ApplicationIcon>icon.ico</ApplicationIcon>
2323
<Configurations>Debug;Release;DebugNoReflection;ReleaseNoReflection</Configurations>
2424
</PropertyGroup>

Hi3Helper.Plugin.DNA/Management/PresetConfig/DNABilibiliPresetConfig.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ public partial class DNABiliBilliPresetConfig : DNAChinaPresetConfig
3636
[field: AllowNull, MaybeNull]
3737
public override string ZoneFullName => field ??= "Duet Night Abyss (Bilibili)";
3838

39+
[field: AllowNull, MaybeNull]
40+
public override string ZoneHomePageUrl => field ??= "https://www.biligame.com/detail/?id=111799";
41+
3942
public override IGameManager? GameManager
4043
{
4144
get => field ??= new DNAGameManager(ExecutableName, ApiResponseDetails, this);

Hi3Helper.Plugin.DNA/Management/PresetConfig/DNAChinaPresetConfig.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,24 +72,24 @@ public override string GameAppDataPath {
7272
"《二重螺旋》是英雄游戏旗下潘神工作室自研的一款幻想风多维战斗爽游。\n游戏以「多维武器组合×立体战斗」为核心玩法,以「双视角」讲述「恶魔」的故事。";
7373

7474
[field: AllowNull, MaybeNull]
75-
public override string ZoneName => field ??= "China";
75+
public override string ZoneName => field ??= "Mainland China";
7676

7777
[field: AllowNull, MaybeNull]
78-
public override string ZoneFullName => field ??= "Duet Night Abyss (China)";
78+
public override string ZoneFullName => field ??= "Duet Night Abyss (Mainland China)";
7979

8080
[field: AllowNull, MaybeNull]
81-
public override string ZoneLogoUrl => field ??= "https://cdnstatic.herogame.com/static/duetnightabyss/4.0/imgs/icon/black-logo-en.png";
81+
public override string ZoneLogoUrl => field ??= "https://cdnstatic.yingxiong.com/dna/gw/imgs/icon/black-logo.png";
8282

8383
[field: AllowNull, MaybeNull]
8484
public override string ZonePosterUrl => field ??= "https://cdnstatic.herogame.com/static/duetnightabyss/4.0/imgs/worldview/pc/2.jpg";
8585

8686
[field: AllowNull, MaybeNull]
87-
public override string ZoneHomePageUrl => field ??= "https://duetnightabyss.dna-panstudio.com/";
87+
public override string ZoneHomePageUrl => field ??= "https://dna.yingxiong.com/";
8888

8989
public override GameReleaseChannel ReleaseChannel => GameReleaseChannel.Public;
9090

9191
[field: AllowNull, MaybeNull]
92-
public override string GameMainLanguage => field ??= "en";
92+
public override string GameMainLanguage => field ??= "cn";
9393

9494
[field: AllowNull, MaybeNull]
9595
public override string LauncherGameDirectoryName => field ??= "DNA Game";

Hi3Helper.Plugin.DNA/Management/PresetConfig/DNAEpicPresetConfig.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ public partial class DNAEpicPresetConfig : DNAGlobalPresetConfig
3333
[field: AllowNull, MaybeNull]
3434
public override string ZoneFullName => field ??= "Duet Night Abyss (Epic Games)";
3535

36+
[field: AllowNull, MaybeNull]
37+
public override string ZoneHomePageUrl => field ??= "https://store.epicgames.com/en-US/p/duetnightabyss-016366";
38+
3639
public override IGameManager? GameManager
3740
{
3841
get => field ??= new DNAGameManager(ExecutableName, ApiResponseDetails, this);

0 commit comments

Comments
 (0)