Skip to content

Commit 6e9985e

Browse files
authored
Merge pull request #183 from bitfinexcom/beta
Releases version 4.2.0
2 parents 9c267a3 + 2db0357 commit 6e9985e

5 files changed

Lines changed: 28 additions & 3 deletions

File tree

.github/workflows/build-electron-app.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ on:
1616
isAutoUpdateDisabled:
1717
description: 'Is auto-update disabled (true / 1)?'
1818
required: false
19+
isBfxApiStaging:
20+
description: 'Is it necessary to use BFX API Staging? (true / 1)?'
21+
required: false
1922

2023
env:
2124
DOCKER_BUILDKIT: 1
@@ -45,6 +48,10 @@ jobs:
4548
name: Turn off auto-update
4649
run: |
4750
echo "IS_AUTO_UPDATE_DISABLED=1" >> $GITHUB_ENV
51+
- if: contains(fromJson('["true", "1", true, 1]'), github.event.inputs.isBfxApiStaging)
52+
name: Use BFX API Staging for queries
53+
run: |
54+
echo "IS_BFX_API_STAGING=1" >> $GITHUB_ENV
4855
- name: Cache Docker images
4956
uses: ScribeMD/docker-cache@0.1.4
5057
env:
@@ -103,6 +110,10 @@ jobs:
103110
name: Turn off auto-update
104111
run: |
105112
echo "IS_AUTO_UPDATE_DISABLED=1" >> $GITHUB_ENV
113+
- if: contains(fromJson('["true", "1", true, 1]'), github.event.inputs.isBfxApiStaging)
114+
name: Use BFX API Staging for queries
115+
run: |
116+
echo "IS_BFX_API_STAGING=1" >> $GITHUB_ENV
106117
- uses: actions/setup-node@v3
107118
with:
108119
node-version: 14.16.0

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [4.2.0] - 2023-02-01
11+
12+
### Added
13+
14+
- Added the [weighted averages report](https://www.investopedia.com/terms/w/weightedaverage.asp) representation and corresponding functionalities. PR: [bfx-report-ui#607](https://github.com/bitfinexcom/bfx-report-ui/pull/607)
15+
- Added the ability to make releases using `GitHub Actions` against the `BFX API Staging` manually. PR: [bfx-report-electron#179](https://github.com/bitfinexcom/bfx-report-electron/pull/179)
16+
17+
### Fixed
18+
19+
- Fixed sync progress percentage calculation. PR: [bfx-reports-framework#250](https://github.com/bitfinexcom/bfx-reports-framework/pull/250)
20+
- Fixed handling some `null` responses from the `Account Summary` endpoint. PR: [bfx-reports-framework#251](https://github.com/bitfinexcom/bfx-reports-framework/pull/251)
21+
- Fixed navigation menu representation on some mobile screens. PR: [bfx-report-ui#606](https://github.com/bitfinexcom/bfx-report-ui/pull/606)
22+
- Fixed issue with dropping selected pairs on `Derivatives` refreshing. PR: [bfx-report-ui#608](https://github.com/bitfinexcom/bfx-report-ui/pull/608)
23+
1024
## [4.1.0] - 2023-01-18
1125

1226
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bfx-report-electron",
3-
"version": "4.1.0",
3+
"version": "4.2.0",
44
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
55
"description": "Reporting tool",
66
"author": "bitfinex.com",

0 commit comments

Comments
 (0)