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

Commit

Permalink
Merge pull request #106 from coltoneshaw/v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
coltoneshaw authored Jan 11, 2022
2 parents ee2be68 + 1e56a7a commit 3c50d9b
Show file tree
Hide file tree
Showing 147 changed files with 7,957 additions and 5,863 deletions.
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"git.ignoreLimitWarning": true,
"liveServer.settings.port": 5501,
"cSpell.words": [
"preload"
]
"preload",
"uuidv"
],
"typescript.tsdk": "node_modules/typescript/lib"
}
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
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@ If you have any issues don't hesitate to reach out to me on Discord @the_okayest

A dev build will enable you to contribute to the project locally, make changes in real time, and test the code for yourself. Just follow the below steps.

1. Download the project locally
### 1. Download the project locally

```
git clone https://github.com/coltoneshaw/3c-portfolio-manager.git
```

2. Navigate into the folder you downloaded
### 2. Navigate into the folder you downloaded

```bash
cd 3c-portfolio-manager
```
3. Download the project dependencies.
### 3. Download the project dependencies.

```
npm i --include=dev
Expand All @@ -82,7 +82,7 @@ Invalid path name example - `/Desktop/my folder/3c-portfolio-manager`

Valid path name example - `/Desktop/my_folder/3c-portfolio-manager`

4. Build webpack and sqlite3
### 4. Build webpack and sqlite3

```
npm run webpack
Expand All @@ -91,7 +91,7 @@ npm run rebuild

These commands will take a few minutes as they build the webpack config and rebuild sqlite locally.

5. Start the dev server
### 5. Start the dev server

```
npm run dev
Expand All @@ -104,14 +104,14 @@ If you make changes to the Electron main.ts / preload.ts file you may need to ca

## Packaging the application

1. Run steps 1 - 5 of setting the dev server up.
2. Package the application
### 1. Run steps 1 - 5 of setting the dev server up.
### 2. Package the application

```
npm run build
```

3. The relevant build files will be located in `./release`
### 3. The relevant build files will be located in `./release`

# Frequently Asked Questions

Expand Down
Loading

0 comments on commit 3c50d9b

Please sign in to comment.