-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from bitfinexcom/beta
Release version 1.6.2
- Loading branch information
Showing
27 changed files
with
988 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
package-lock=false | ||
save-exact=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Changelog | ||
|
||
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] | ||
|
||
### Added | ||
|
||
- Added ability to `backup/restore` DB | ||
- Added ability to track server worker errors | ||
- Added `changelog` file and flow to show one in the modal dialog after the app was updated | ||
|
||
### Fixed | ||
|
||
- Fixed snapshots tickers. The issue is the following: when taking a snapshot of wallets it's not showing the correspondent tickers as to represent crypto in fiat equivalent | ||
- Fixed error manager | ||
|
||
### Changed | ||
|
||
- Updated electron version up to `13.6.3` | ||
|
||
## [3.6.1] - 2021-11-03 | ||
|
||
### Fixed | ||
|
||
- Fixed `account summary` response for sub-account | ||
- Fixed issue with app crashing on `Start Snapshot` and related `React` errors | ||
|
||
### Added | ||
|
||
- Added `win/loss` vs `account balance` report | ||
- Added `Show Unrealized Profits` selectors to `Average Win/Loss` and `Account Balance` sections |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule bfx-report-ui
updated
23 files
Submodule bfx-reports-framework
updated
20 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
'use strict' | ||
|
||
const { app } = require('electron') | ||
|
||
const ipcs = require('../ipcs') | ||
const isMainWinAvailable = require( | ||
'../helpers/is-main-win-available' | ||
) | ||
|
||
const PROCESS_STATES = require( | ||
'../../bfx-reports-framework/workers/loc.api/process.message.manager/process.states' | ||
) | ||
|
||
module.exports = () => { | ||
return () => { | ||
try { | ||
if ( | ||
!app.isReady() || | ||
!isMainWinAvailable() | ||
) { | ||
return | ||
} | ||
|
||
ipcs.serverIpc.send({ state: PROCESS_STATES.BACKUP_DB }) | ||
} catch (err) { | ||
console.error(err) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
'use strict' | ||
|
||
const showChangelog = require('./show-changelog') | ||
const manageChangelog = require('./manage-changelog') | ||
|
||
module.exports = { | ||
showChangelog, | ||
manageChangelog | ||
} |
Oops, something went wrong.