diff --git a/.github/workflows/build-electron-app.yml b/.github/workflows/build-electron-app.yml index 7e6b09ff..e0124c7b 100644 --- a/.github/workflows/build-electron-app.yml +++ b/.github/workflows/build-electron-app.yml @@ -165,12 +165,12 @@ jobs: max_attempts: 3 retry_on: any command: | - if [[ -z "${APPLE_TEAM_ID}" ]]; then unset NOTARIZE; fi - if [[ -z "${APPLE_TEAM_ID}" ]]; then unset APPLE_TEAM_ID; fi - if [[ -z "${APPLE_ID}" ]]; then unset APPLE_ID; fi - if [[ -z "${APPLE_APP_SPECIFIC_PASSWORD}" ]]; then unset APPLE_APP_SPECIFIC_PASSWORD; fi - if [[ -z "${CSC_LINK}" ]]; then unset CSC_LINK; fi - if [[ -z "${CSC_KEY_PASSWORD}" ]]; then unset CSC_KEY_PASSWORD; fi + if [[ -z "${APPLE_TEAM_ID}" || "${NOTARIZE:-}" != "1" ]]; then unset NOTARIZE; fi + if [[ -z "${APPLE_TEAM_ID}" || "${NOTARIZE:-}" != "1" ]]; then unset APPLE_TEAM_ID; fi + if [[ -z "${APPLE_ID}" || "${NOTARIZE:-}" != "1" ]]; then unset APPLE_ID; fi + if [[ -z "${APPLE_APP_SPECIFIC_PASSWORD}" || "${NOTARIZE:-}" != "1" ]]; then unset APPLE_APP_SPECIFIC_PASSWORD; fi + if [[ -z "${CSC_LINK}" || "${NOTARIZE:-}" != "1" ]]; then unset CSC_LINK; fi + if [[ -z "${CSC_KEY_PASSWORD}" || "${NOTARIZE:-}" != "1" ]]; then unset CSC_KEY_PASSWORD; fi ./scripts/build-release.sh -mp - name: Zip Mac Unpacked build run: zip -r dist/mac.zip dist/mac diff --git a/CHANGELOG.md b/CHANGELOG.md index b48da19b..690f9523 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [4.19.0] - 2024-02-14 + +### Added + +- Added ability to close the drawer on mobile when clicking on a item of the menu. PR: [bfx-report-ui#764](https://github.com/bitfinexcom/bfx-report-ui/pull/764) +- Added environment configuration during the `Google Tag Manager` initialization. PR: [bfx-report-ui#767](https://github.com/bitfinexcom/bfx-report-ui/pull/767) +- Added an option to skip `Mac` build notarizing and signing when running manually. PR: [bfx-report-electron#314](https://github.com/bitfinexcom/bfx-report-electron/pull/314) + +### Changed + +- Enhanced representation of the app `Summary` sections loading states according to the latest design updates. Added showing loading states for them during initial sync. PR: [bfx-report-ui#768](https://github.com/bitfinexcom/bfx-report-ui/pull/768) + ## [4.18.0] - 2024-01-31 ### Added diff --git a/bfx-report-ui b/bfx-report-ui index 1236f970..640f4a9d 160000 --- a/bfx-report-ui +++ b/bfx-report-ui @@ -1 +1 @@ -Subproject commit 1236f970ba0b1c4c9b5274dd1049ade7814febf9 +Subproject commit 640f4a9d29e800fbf9f0a9a7ef31c35e85f58b46 diff --git a/package.json b/package.json index 8ef86696..d0296b92 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bfx-report-electron", - "version": "4.18.0", + "version": "4.19.0", "repository": "https://github.com/bitfinexcom/bfx-report-electron", "description": "Reporting tool", "author": "bitfinex.com",