Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
Updated v2.0.0 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
coltoneshaw committed Jan 11, 2022
1 parent a81522c commit 1e56a7a
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# v2.0.0
## New Features
- Add copy today stats button
- Abstract backend electron from the application for web portability.
- Added write mode to update deal TP. Future possibilities coming.
- Added a Open in 3C button to deals and bots.
- Added API error banner to display instead of the alert.
- Added Snapshot dashboard that allows a combination of currencies, accounts, and displays statistics centered around profit.
- Implemented the ability to show/hide specific columns.
- Added UST

## Enhancements
- Improved the 3C API handler.
- Reworked entire data storage logic to break profiles into set databases.
- Improved table layout to flex, should be more stable on all screen sizes.
## Bug Fixes
- Max Active Deals column was not editable on the bot planner
- Fixed notification settings that did not persist on reload.
- Bot API calls only pulled 100 bots at a time, improved this to pull all bots.
- Fix tooltips that were hidden behind elements.
- Improved reliability of the auto refresh function.
- Multiple profiles would rewrite old deals causing a loss of data.
- Fixed reserved funds storing as a string instead of number.

# v1.0.0

## New Features
Expand Down
30 changes: 29 additions & 1 deletion src/app/Features/Changelog/changelogText.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

const mostRecent = 'v1.0.0'
const mostRecent = 'v2.0.0'


const versionInformation = [
Expand Down Expand Up @@ -283,6 +283,34 @@ const versionInformation = [
'Adjusted tooltips and headers for better clarity.',
]
},
{
version: 'v2.0.0',
link: 'https://docs.3cpm.io/changelog#v-2-0-0',
enhancements: [
'Improved the 3C API handler.',
'Reworked entire data storage logic to break profiles into set databases.',
'Improved table layout to flex, should be more stable on all screen sizes.'
],
bugs: [
'Max Active Deals column was not editable on the bot planner.',
'Fixed notification settings that did not persist on reload.',
'Bot API calls only pulled 100 bots at a time, improved this to pull all bots.',
'Fix tooltips that were hidden behind elements.',
'Improved reliability of the auto refresh function.',
'Multiple profiles would rewrite old deals causing a loss of data.',
'Fixed reserved funds storing as a string instead of number.'
],
new: [
'Add copy today stats button.',
'Abstract backend electron from the application for web portability.',
'Added write mode to update deal TP. Future possibilities coming.',
'Added a Open in 3C button to deals and bots.',
'Added API error banner to display instead of the alert.',
'Added Snapshot dashboard that allows a combination of currencies, accounts, and displays statistics centered around profit.',
'Implemented the ability to show/hide specific columns.',
'Added UST'
]
},
]

export {
Expand Down

0 comments on commit 1e56a7a

Please sign in to comment.