From f0a5cb3215824cdf5f83c3f45cbae6aa7c37bc11 Mon Sep 17 00:00:00 2001 From: Milkitic Date: Mon, 25 Dec 2023 14:11:48 +0800 Subject: [PATCH] Add R2R in CI & fix Combo reading --- .github/workflows/publish.yml | 6 +++--- .../OsuMemoryModels/Abstract/RulesetPlayData.cs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 087cbf7..b365f3e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -38,8 +38,8 @@ jobs: if: ${{ success() }} run: | echo ${{ github.ref }} - dotnet publish KeyAsio.Gui --no-restore --framework net8.0-windows --runtime win-x64 --self-contained --configuration Release --output ci-publish-win64 - dotnet publish KeyAsio.Gui --no-restore --framework net8.0-windows --runtime win-x86 --self-contained --configuration Release --output ci-publish-win32 + dotnet publish KeyAsio.Gui --no-restore --framework net8.0-windows --runtime win-x64 --self-contained --configuration Release -p:PublishReadyToRun=true --output ci-publish-win64 + dotnet publish KeyAsio.Gui --no-restore --framework net8.0-windows --runtime win-x86 --self-contained --configuration Release -p:PublishReadyToRun=true --output ci-publish-win32 dotnet publish KeyAsio.Gui --no-restore --framework net8.0-windows --configuration Release --output ci-publish - name: Confuser @@ -94,7 +94,7 @@ jobs: 1. Place holder ### Installation - .NET 7.0 Desktop Runtime is required for the smallest asset. + .NET 8.0 Desktop Runtime is required for the smallest asset. For the other two assets with "-win32" and "-win64" postfix, you don't need to install anything more. name: ${{ env.ProjectName }}-${{ steps.tag.outputs.tag }} prerelease: true diff --git a/KeyAsio.MemoryReading/OsuMemoryModels/Abstract/RulesetPlayData.cs b/KeyAsio.MemoryReading/OsuMemoryModels/Abstract/RulesetPlayData.cs index 8dcf66d..67892e6 100644 --- a/KeyAsio.MemoryReading/OsuMemoryModels/Abstract/RulesetPlayData.cs +++ b/KeyAsio.MemoryReading/OsuMemoryModels/Abstract/RulesetPlayData.cs @@ -29,7 +29,7 @@ public class RulesetPlayData //public ushort HitKatu { get; set; } //[MemoryAddress("[+0x38]+0x92")] //public ushort HitMiss { get; set; } - //[MemoryAddress("[+0x38]+0x94")] + [MemoryAddress("[+0x38]+0x94")] public ushort Combo { get; set; } }