Skip to content

Commit

Permalink
Merge pull request #152 from bitfinexcom/beta
Browse files Browse the repository at this point in the history
Release version 3.7.2
  • Loading branch information
ezewer authored Jun 1, 2022
2 parents 6f945ed + 3451768 commit eb8fd9b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
24 changes: 20 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,25 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.7.2] - 2022-06-01

## [3.7.1] - 2021-04-28
### Added

- Adds Balance(USD) precision selector to the Wallets section. PR: [bfx-report-ui#522](https://github.com/bitfinexcom/bfx-report-ui/pull/522)

### Changed

- Adds logic for merging similar trades, with the same orderId and execPrice, to the one dot on the Candles chart for better representation and readability in the UI. PR: [bfx-report-ui#515](https://github.com/bitfinexcom/bfx-report-ui/pull/515)
- Removes Input Timezone picker from Preferences and related logic for setting and using manually selected timezone for inputs. PR: [bfx-report-ui#521](https://github.com/bitfinexcom/bfx-report-ui/pull/521)
- Adds sub accounts selection persistence in Multiple Accounts login mode in the UI. PR: [bfx-report-ui#518](https://github.com/bitfinexcom/bfx-report-ui/pull/518)

### Fixed

- Fixed issues related to database being locked in sqlite PR: [bfx-reports-framework#221](https://github.com/bitfinexcom/bfx-reports-framework/pull/221)
- Related to issues: [#146](https://github.com/bitfinexcom/bfx-report-electron/issues/146), [#147](https://github.com/bitfinexcom/bfx-report-electron/issues/147)
- Fixes sync request fail during logout issue. PR: [bfx-report-ui#519](https://github.com/bitfinexcom/bfx-report-ui/pull/519)

## [3.7.1] - 2022-04-28

### Added

Expand All @@ -26,7 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed symbol pair splitting to handle pairs with long characters like `tMATICM:USD` and `MATICMF0` etc. PR: [bfx-report#260](https://github.com/bitfinexcom/bfx-report/pull/260)
- Actualized i18next backend in the UI. PR: [bfx-report-ui#510](https://github.com/bitfinexcom/bfx-report-ui/pull/510)

## [3.7.0] - 2021-04-12
## [3.7.0] - 2022-04-12

### Added

Expand Down Expand Up @@ -54,7 +70,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Updated/Hardcoded dependencies versions

## [3.6.3] - 2021-01-12
## [3.6.3] - 2022-01-12

### Added

Expand Down
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 43 files
+1 −1 bfx-report-express
+101 −61 package-lock.json
+6 −6 package.json
+5 −1 public/locales/en/translations.json
+0 −1 public/locales/es-EM/translations.json
+0 −1 public/locales/pt-BR/translations.json
+0 −1 public/locales/ru/translations.json
+0 −1 public/locales/tr/translations.json
+2 −3 public/locales/zh-CN/translations.json
+0 −1 public/locales/zh-TW/translations.json
+6 −1 src/components/Auth/SignIn/SignIn.container.js
+26 −16 src/components/Auth/SignIn/SignIn.js
+7 −0 src/components/Auth/_Auth.scss
+2 −4 src/components/Preferences/Preferences.container.js
+0 −9 src/components/Preferences/Preferences.js
+0 −2 src/components/Preferences/Preferences.props.js
+20 −6 src/components/Wallets/Wallets.container.js
+55 −17 src/components/Wallets/Wallets.js
+8 −1 src/components/Wallets/Wallets.props.js
+2 −0 src/state/auth/selectors.js
+0 −12 src/state/base/actions.js
+0 −1 src/state/base/constants.js
+0 −8 src/state/base/reducer.js
+3 −6 src/state/base/selectors.js
+3 −3 src/state/snapshots/selectors.js
+14 −9 src/state/sync/saga.js
+7 −0 src/state/wallets/actions.js
+1 −0 src/state/wallets/constants.js
+7 −0 src/state/wallets/reducer.js
+2 −0 src/state/wallets/selectors.js
+34 −0 src/ui/BalancePrecisionSelector/BalancePrecisionSelector.js
+4 −0 src/ui/BalancePrecisionSelector/constants.js
+1 −0 src/ui/BalancePrecisionSelector/index.js
+9 −4 src/ui/Charts/Candlestick/Candlestick.js
+5 −5 src/ui/Charts/Candlestick/Tooltip/Tooltip.js
+1 −1 src/ui/Charts/Candlestick/_Candlestick.scss
+12 −0 src/ui/Charts/Charts.helpers.js
+0 −13 src/ui/DateInput/DateInput.container.js
+3 −3 src/ui/DateInput/DateInput.js
+0 −3 src/ui/DateInput/DateInput.props.js
+1 −3 src/ui/DateInput/index.js
+12 −0 src/ui/Select/_Select.scss
+15 −5 src/ui/utils.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bfx-report-electron",
"version": "3.7.1",
"version": "3.7.2",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
Expand Down

0 comments on commit eb8fd9b

Please sign in to comment.