chore: bump version to 1.0.1

This commit is contained in:
Anna 2023-10-06 02:05:58 -04:00
parent f0a9405e69
commit b1a50268e0
Signed by: anna
GPG Key ID: D0943384CD9F87D1
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0-alpha.2</Version>
<Version>1.0.1</Version>
<TargetFramework>net7.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>

View File

@ -108,9 +108,11 @@ public class Plugin : IDalamudPlugin {
}
}
// Average gzipped payload size: 6150 bytes
// with http headers, call it 6500 bytes/req
[Serializable]
[MessagePackObject]
internal struct Update(uint territory, uint world, List<PlayerInfo> players) {
public struct Update(uint territory, uint world, List<PlayerInfo> players) {
[Key(0)]
public readonly uint Territory = territory;
@ -123,7 +125,7 @@ internal struct Update(uint territory, uint world, List<PlayerInfo> players) {
[Serializable]
[MessagePackObject]
internal struct PlayerInfo(
public struct PlayerInfo(
string name,
uint world,
float x,