Browse Source
Merge branch 'main' into feature/change-direction-of-ellipsis-icon-to-horizontal-in-tables
pull/2055/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with
8 additions and
7 deletions
-
.github/workflows/build-code.yml
-
.nvmrc
-
CHANGELOG.md
-
Dockerfile
-
README.md
-
apps/client/src/app/pages/portfolio/activities/activities-page.component.ts
-
package.json
|
@ -10,7 +10,7 @@ jobs: |
|
|
strategy: |
|
|
strategy: |
|
|
matrix: |
|
|
matrix: |
|
|
node_version: |
|
|
node_version: |
|
|
- 16 |
|
|
- 18 |
|
|
steps: |
|
|
steps: |
|
|
- name: Checkout code |
|
|
- name: Checkout code |
|
|
uses: actions/checkout@v3 |
|
|
uses: actions/checkout@v3 |
|
|
|
@ -9,7 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Extended the clone functionality of a transaction by the quantity |
|
|
- Changed the direction of the ellipsis icon in various tables |
|
|
- Changed the direction of the ellipsis icon in various tables |
|
|
|
|
|
- Upgraded `Node.js` from version `16` to `18` (`Dockerfile`) |
|
|
|
|
|
|
|
|
## 1.277.0 - 2023-06-07 |
|
|
## 1.277.0 - 2023-06-07 |
|
|
|
|
|
|
|
|
|
@ -1,4 +1,4 @@ |
|
|
FROM --platform=$BUILDPLATFORM node:16-slim as builder |
|
|
FROM --platform=$BUILDPLATFORM node:18-slim as builder |
|
|
|
|
|
|
|
|
# Build application and add additional files |
|
|
# Build application and add additional files |
|
|
WORKDIR /ghostfolio |
|
|
WORKDIR /ghostfolio |
|
@ -50,7 +50,7 @@ COPY package.json /ghostfolio/dist/apps/api |
|
|
RUN yarn database:generate-typings |
|
|
RUN yarn database:generate-typings |
|
|
|
|
|
|
|
|
# Image to run, copy everything needed from builder |
|
|
# Image to run, copy everything needed from builder |
|
|
FROM node:16-slim |
|
|
FROM node:18-slim |
|
|
RUN apt update && apt install -y \ |
|
|
RUN apt update && apt install -y \ |
|
|
openssl \ |
|
|
openssl \ |
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
@ -145,7 +145,7 @@ Please follow the instructions of the Ghostfolio [Unraid Community App](https:// |
|
|
### Prerequisites |
|
|
### Prerequisites |
|
|
|
|
|
|
|
|
- [Docker](https://www.docker.com/products/docker-desktop) |
|
|
- [Docker](https://www.docker.com/products/docker-desktop) |
|
|
- [Node.js](https://nodejs.org/en/download) (version 16) |
|
|
- [Node.js](https://nodejs.org/en/download) (version 18+) |
|
|
- [Yarn](https://yarnpkg.com/en/docs/install) |
|
|
- [Yarn](https://yarnpkg.com/en/docs/install) |
|
|
- Create a local copy of this Git repository (clone) |
|
|
- Create a local copy of this Git repository (clone) |
|
|
- Copy the file `.env.example` to `.env` and populate it with your data (`cp .env.example .env`) |
|
|
- Copy the file `.env.example` to `.env` and populate it with your data (`cp .env.example .env`) |
|
|
|
@ -291,7 +291,6 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { |
|
|
date: new Date(), |
|
|
date: new Date(), |
|
|
id: null, |
|
|
id: null, |
|
|
fee: 0, |
|
|
fee: 0, |
|
|
quantity: null, |
|
|
|
|
|
type: aActivity?.type ?? 'BUY', |
|
|
type: aActivity?.type ?? 'BUY', |
|
|
unitPrice: null |
|
|
unitPrice: null |
|
|
}, |
|
|
}, |
|
|
|
@ -198,7 +198,7 @@ |
|
|
"typescript": "4.9.5" |
|
|
"typescript": "4.9.5" |
|
|
}, |
|
|
}, |
|
|
"engines": { |
|
|
"engines": { |
|
|
"node": ">=16" |
|
|
"node": ">=18" |
|
|
}, |
|
|
}, |
|
|
"importSort": { |
|
|
"importSort": { |
|
|
".ts": { |
|
|
".ts": { |
|
|