You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
4
+
5
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
## [Unreleased]
9
+
10
+
### Added
11
+
12
+
- Added ability to `backup/restore` DB
13
+
- Added ability to track server worker errors
14
+
- Added `changelog` file and flow to show one in the modal dialog after the app was updated
15
+
16
+
### Fixed
17
+
18
+
- 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
19
+
- Fixed error manager
20
+
21
+
### Changed
22
+
23
+
- Updated electron version up to `13.6.3`
24
+
25
+
## [3.6.1] - 2021-11-03
26
+
27
+
### Fixed
28
+
29
+
- Fixed `account summary` response for sub-account
30
+
- Fixed issue with app crashing on `Start Snapshot` and related `React` errors
31
+
32
+
### Added
33
+
34
+
- Added `win/loss` vs `account balance` report
35
+
- Added `Show Unrealized Profits` selectors to `Average Win/Loss` and `Account Balance` sections
Copy file name to clipboardExpand all lines: docs/user-manual.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -399,6 +399,8 @@ First time opening the App or Syncing an account users would need to wait the pr
399
399
> - Tools:
400
400
> - Export DB
401
401
> - Import DB
402
+
> - Restore DB
403
+
> - Backup DB
402
404
> - Remove DB
403
405
> - Clear all data
404
406
> - Change reports folder
@@ -407,6 +409,7 @@ First time opening the App or Syncing an account users would need to wait the pr
407
409
> - Open new GitHub issue
408
410
> - Check for update
409
411
> - User manual
412
+
> - Changelog
410
413
> - About
411
414
412
415
</details>
@@ -418,9 +421,17 @@ First time opening the App or Syncing an account users would need to wait the pr
418
421
> - If a user wishes to upgrade between report versions, change the computer or replicate a report on another computer, without syncing their data again, there is an option added to import/export the reports DB.
419
422
By pressing the `ALT` key, a menu will pop up on the top with the respective tools relating to do the export/import task.
420
423
> - If it becomes necessary to clear all confidential data, it is possible to completely delete the database files using the menu bar item `Tools`->`Remove DB`.
421
-
> Also has ability to drop all data except users login information to be able to login using the menu bar item `Tools`->`Clear all data`.
424
+
> -Also has ability to drop all data except users login information to be able to login using the menu bar item `Tools`->`Clear all data`.
422
425
> After it the app would be launched except exporting case
423
426
427
+
> In addition to the above, there is an option to restore the DB from previously saved backups:
428
+
> - when a new version of the app is published DB structure might be changed
429
+
> - in this case, the corresponding DB backup would be saved to keep users data safe
430
+
> - if DB migration to a new version has some trouble would restore the previous DB version from the made backups
431
+
> - also, available an option into the menu bar to be able to restore DB from the selected backup `Tools`->`Restore DB` and make a new backup file `Tools`->`Backup DB`
432
+
> - backups store in the same place where the main DB is placed, in a separated folder `backups/`
433
+
> - stores only two last versions of backup files (e.g. `backup_v26_TIMESTAMP.db` and `backup_v25_TIMESTAMP.db`). And not more than two backup files of the last DB version (e.g. `backup_v26_2021-11-05T00-00-00.000Z.db` and `backup_v26_2021-09-05T00-00-00.000Z.db`) for cases when user wants to store more than one backup file for current supported DB schema. Taking into account the previously described, max number of backup files might be three
0 commit comments