Skip to content

Commit 37eea58

Browse files
cn 7.50a and bump to 26.5.9
1 parent e39675c commit 37eea58

3 files changed

Lines changed: 18 additions & 18 deletions

File tree

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<Copyright>Copyright © RainbowMage 2015, Kuriyama hibiya 2016, ngld 2019, OverlayPlugin Team 2022</Copyright>
66
<RunCodeAnalysis>false</RunCodeAnalysis>
77
<EnableNETAnalyzers>true</EnableNETAnalyzers>
8-
<AssemblyVersion>26.3.29.0</AssemblyVersion>
9-
<FileVersion>26.3.29.0</FileVersion>
8+
<AssemblyVersion>26.5.9.0</AssemblyVersion>
9+
<FileVersion>26.5.9.0</FileVersion>
1010
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
1111
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
1212
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>

OverlayPlugin.Core/EventSources/CactbotEventSource.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public override void Start()
218218
pc_locale_ = System.Globalization.CultureInfo.CurrentUICulture.Name;
219219
var repository = container.Resolve<FFXIVRepository>();
220220

221-
cactbot_version_ = new Version(0, 36, 6, 0);
221+
cactbot_version_ = new Version(0, 37, 1, 0);
222222
overlay_plugin_version_ = typeof(IOverlay).Assembly.GetName().Version;
223223
ffxiv_plugin_version_ = repository.GetPluginVersion();
224224
act_version_ = typeof(ActGlobals).Assembly.GetName().Version;
@@ -745,7 +745,7 @@ private JObject FetchUserFiles(JObject msg)
745745
result["language"] = language_;
746746

747747
//It's unknown for ffcafe, but leave stub here should be better incase some overlays using that
748-
result["cactbotVersion"] = "0.36.6.0";
748+
result["cactbotVersion"] = "0.37.1.0";
749749
result["overlayPluginVersion"] = overlay_plugin_version_.ToString();
750750
result["ffxivPluginVersion"] = ffxiv_plugin_version_.ToString();
751751
result["actVersion"] = act_version_.ToString();

OverlayPlugin.Core/GameRepoInfo.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ namespace RainbowMage.OverlayPlugin
88
{
99
public class GameRepoInfo
1010
{
11-
//CN 7.45b
12-
public static readonly Version version = new Version(7, 4);
13-
public static readonly int ActorMoveOpcode = 0x02B0;
14-
public static readonly int ActorSetPosOpcode = 0x0085;
15-
public static readonly int BattleTalk2Opcode = 0x0345;
16-
public static readonly int CEDirectorOpcode = 0x0224;
17-
public static readonly int CountdownOpcode = 0x0206;
18-
public static readonly int CountdownCancelOpcode = 0x0196;
19-
public static readonly int MapEffectOpcode = 0x02EA;
20-
public static readonly int NpcYellOpcode = 0x022C;
21-
public static readonly int RSVDataOpcode = 0x01D1;
22-
public static readonly int MapEffect4Opcode = 0x02CE;
23-
public static readonly int MapEffect8Opcode = 0x018E;
24-
public static readonly int MapEffect12Opcode = 0x01B6;
11+
//CN 7.50a
12+
public static readonly Version version = new Version(7, 5);
13+
public static readonly int ActorMoveOpcode = 0x0095;
14+
public static readonly int ActorSetPosOpcode = 0x01C0;
15+
public static readonly int BattleTalk2Opcode = 0x028C;
16+
public static readonly int CEDirectorOpcode = 0x016C;
17+
public static readonly int CountdownOpcode = 0x033F;
18+
public static readonly int CountdownCancelOpcode = 0x0300;
19+
public static readonly int MapEffectOpcode = 0x0338;
20+
public static readonly int NpcYellOpcode = 0x02A7;
21+
public static readonly int RSVDataOpcode = 0x01BB;
22+
public static readonly int MapEffect4Opcode = 0x03A6;
23+
public static readonly int MapEffect8Opcode = 0x0360;
24+
public static readonly int MapEffect12Opcode = 0x02D8;
2525
}
2626
}

0 commit comments

Comments
 (0)