diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 10e6306e710..42bb9def95d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,7 @@ on: - preview - release/* - fast-track/* + - fix-upload-artifact tags: [ "*" ] pull_request: types: [ ready_for_review, opened, reopened, auto_merge_enabled ] @@ -185,7 +186,7 @@ jobs: aws-region: ap-northeast-2 - name: release - uses: planetarium/9c-toolbelt@main + uses: planetarium/9c-toolbelt@feature/deprecate_runtime_api with: COMMAND_LIST: "release|player|${{ github.sha }}|${{ needs.extract.outputs.version }}|${{ needs.extract.outputs.network }}|${{ matrix.targetPlatform }}|${{ needs.extract.outputs.signing }}|--slack-channel=${{ secrets.SLACK_CHANNEL }}|--run-id=${{ github.run_id }}" ENV: production diff --git a/nekoyume/Assets/AddressableAssets/UI/Module/Arena/Board/ArenaBoardPlayerCell.prefab b/nekoyume/Assets/AddressableAssets/UI/Module/Arena/Board/ArenaBoardPlayerCell.prefab index 3f9f40a4d78..a1b632bd3ac 100644 --- a/nekoyume/Assets/AddressableAssets/UI/Module/Arena/Board/ArenaBoardPlayerCell.prefab +++ b/nekoyume/Assets/AddressableAssets/UI/Module/Arena/Board/ArenaBoardPlayerCell.prefab @@ -1809,6 +1809,7 @@ MonoBehaviour: _ratingText: {fileID: 2468895205858989245} _cpText: {fileID: 1991182203086928886} _plusRatingText: {fileID: 4133636230288920637} + _minusRatingText: {fileID: 8538320612807046192} _choiceButton: {fileID: 5759196546260136036} guildMark: {fileID: 7038393542740975417} guildMarkEmpty: {fileID: 2787409500368074896} diff --git a/nekoyume/Assets/_Scripts/UI/Module/Arena/Board/ArenaBoardPlayerCell.cs b/nekoyume/Assets/_Scripts/UI/Module/Arena/Board/ArenaBoardPlayerCell.cs index 8e60e22e5f2..bb8cee45932 100644 --- a/nekoyume/Assets/_Scripts/UI/Module/Arena/Board/ArenaBoardPlayerCell.cs +++ b/nekoyume/Assets/_Scripts/UI/Module/Arena/Board/ArenaBoardPlayerCell.cs @@ -12,6 +12,7 @@ namespace Nekoyume.UI.Module.Arena.Board using Cysharp.Threading.Tasks; using Nekoyume.State; using UniRx; + using Unity.Mathematics; [Serializable] public class ArenaBoardPlayerItemData @@ -70,6 +71,8 @@ public class ArenaBoardPlayerCell [SerializeField] private TextMeshProUGUI _plusRatingText; + [SerializeField] + private TextMeshProUGUI _minusRatingText; [SerializeField] private ConditionalButton _choiceButton; @@ -150,6 +153,9 @@ public override void UpdateContent(ArenaBoardPlayerItemData itemData) _ratingText.text = _currentData.score.ToString("N0", CultureInfo.CurrentCulture); _plusRatingText.gameObject.SetActive(_currentData.canFight); _plusRatingText.text = _currentData.expectWinDeltaScore.ToString("N0", CultureInfo.CurrentCulture); + _minusRatingText.gameObject.SetActive(_currentData.canFight); + + _minusRatingText.text = math.abs(_currentData.scoreOnLose).ToString("N0", CultureInfo.CurrentCulture); _choiceButton.gameObject.SetActive(_currentData.canFight); if (_currentData.canFight) diff --git a/nekoyume/ProjectSettings/ProjectSettings.asset b/nekoyume/ProjectSettings/ProjectSettings.asset index bcf65d52729..4b39e73ec81 100644 --- a/nekoyume/ProjectSettings/ProjectSettings.asset +++ b/nekoyume/ProjectSettings/ProjectSettings.asset @@ -139,7 +139,7 @@ PlayerSettings: 16:10: 0 16:9: 1 Others: 0 - bundleVersion: 280.0.0 + bundleVersion: 280.0.1 preloadedAssets: [] metroInputSource: 0 wsaTransparentSwapchain: 0 @@ -168,7 +168,7 @@ PlayerSettings: iPhone: 0 tvOS: 0 overrideDefaultApplicationIdentifier: 1 - AndroidBundleVersionCode: 284 + AndroidBundleVersionCode: 285 AndroidMinSdkVersion: 24 AndroidTargetSdkVersion: 34 AndroidPreferredInstallLocation: 2