Skip to content

Commit

Permalink
Merge pull request #154 from ezewer/3.7.3
Browse files Browse the repository at this point in the history
Bump beta to version 3.7.3
  • Loading branch information
ezewer authored Jul 8, 2022
2 parents 18c700f + 6f5e9a5 commit 2f3326a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ 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).

## [3.7.3] - 2022-07-08

### Added

- Go to a specific date on the candles chart [bfx-report-ui#527](https://github.com/bitfinexcom/bfx-report-ui/pull/527)
- Add order metadata to csv [bfx-report#264](https://github.com/bitfinexcom/bfx-report/pull/264) and [bfx-report-framework#226](https://github.com/bitfinexcom/bfx-report-framework/pull/226)

### Changed

- Changes is calendar. Picked timezone its also used in the calendar [bfx-report-ui#529](https://github.com/bitfinexcom/bfx-report-ui/pull/529)
- Charts prices representation now has thousands separator [bfx-report-ui#523](https://github.com/bitfinexcom/bfx-report-ui/pull/523)
- Increase limit in candles sync for speed improment [bfx-report#262](https://github.com/bitfinexcom/bfx-report/pull/262) and [bfx-report-framework#224](https://github.com/bitfinexcom/bfx-report-framework/pull/224)


### Fixed

- UI dependencies verification [bfx-report-ui#526](https://github.com/bitfinexcom/bfx-report-ui/pull/526)
- Fixes removing and adding sub accounts [bfx-report-framework#225](https://github.com/bitfinexcom/bfx-report-framework/pull/225)
- Fixes sub-account recalculation [bfx-report-framework#223](https://github.com/bitfinexcom/bfx-report-framework/pull/223)

## [3.7.2] - 2022-06-01

### Added
Expand Down
2 changes: 1 addition & 1 deletion bfx-report-ui
Submodule bfx-report-ui updated 53 files
+39 −38 package-lock.json
+2 −2 package.json
+6 −0 public/locales/en/translations.json
+4 −0 src/components/Candles/Candles.container.js
+22 −8 src/components/Candles/Candles.js
+1 −0 src/components/Candles/Candles.props.js
+12 −0 src/components/Candles/_Candles.scss
+30 −0 src/components/GoToRangeDialog/GoToRangeDialog.container.js
+111 −0 src/components/GoToRangeDialog/GoToRangeDialog.js
+25 −0 src/components/GoToRangeDialog/_GoToRangeDialog.scss
+1 −0 src/components/GoToRangeDialog/index.js
+2 −0 src/components/Main/Main.js
+4 −0 src/icons/_icons.scss
+5 −0 src/icons/go-to.svg
+2 −0 src/icons/index.js
+8 −20 src/locales/i18n.js
+8 −0 src/state/candles/actions.js
+1 −0 src/state/candles/constants.js
+7 −0 src/state/candles/reducer.js
+26 −2 src/state/candles/saga.js
+7 −0 src/state/candles/selectors.js
+57 −0 src/state/goToRange/actions.js
+23 −0 src/state/goToRange/constants.js
+36 −0 src/state/goToRange/reducer.js
+7 −0 src/state/goToRange/selectors.js
+2 −2 src/state/query/saga.js
+2 −0 src/state/reducers.js
+10 −0 src/state/ui/actions.js
+1 −0 src/state/ui/constants.js
+7 −0 src/state/ui/reducer.js
+1 −1 src/state/ui/saga.js
+2 −0 src/state/ui/selectors.js
+2 −0 src/styles/index.scss
+9 −1 src/ui/Charts/Candlestick/Candlestick.container.js
+24 −5 src/ui/Charts/Candlestick/Candlestick.js
+4 −0 src/ui/Charts/Candlestick/_Candlestick.scss
+10 −2 src/ui/Charts/Chart/Chart.js
+3 −0 src/ui/Charts/Charts.helpers.js
+16 −0 src/ui/DateInput/DateInput.container.js
+3 −5 src/ui/DateInput/DateInput.js
+3 −0 src/ui/DateInput/DateInput.props.js
+1 −1 src/ui/DateInput/index.js
+23 −0 src/ui/GoToButton/GoToButton.js
+1 −0 src/ui/GoToButton/index.js
+16 −0 src/ui/GoToRange/GoToRange.container.js
+77 −0 src/ui/GoToRange/GoToRange.js
+38 −0 src/ui/GoToRange/RangeTypeSelect/RangeTypeSelect.js
+20 −0 src/ui/GoToRange/RangeTypeSelect/_RangeTypeSelect.scss
+1 −0 src/ui/GoToRange/RangeTypeSelect/index.js
+28 −0 src/ui/GoToRange/_GoToRange.scss
+1 −0 src/ui/GoToRange/index.js
+1 −0 src/ui/_index.scss
+7 −0 src/utils/dates.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.2",
"version": "3.7.3",
"repository": "https://github.com/bitfinexcom/bfx-report-electron",
"description": "Reporting tool",
"author": "bitfinex.com",
Expand Down

0 comments on commit 2f3326a

Please sign in to comment.