Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
fca3a659d0 | |||
904dec040e | |||
fc6c81fe02 |
10
CHANGELOG.md
10
CHANGELOG.md
@ -5,6 +5,16 @@ 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/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## 1.78.0 - 20.11.2021
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added a testimonial section to the landing page
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the footer row border of the accounts table in dark mode
|
||||||
|
|
||||||
## 1.77.0 - 16.11.2021
|
## 1.77.0 - 16.11.2021
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -31,7 +31,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
:host-context(.is-dark-theme) {
|
:host-context(.is-dark-theme) {
|
||||||
.mat-form-field {
|
.mat-table {
|
||||||
color: rgba(var(--light-primary-text));
|
td {
|
||||||
|
&.mat-footer-cell {
|
||||||
|
border-top-color: rgba(
|
||||||
|
var(--palette-foreground-divider-dark),
|
||||||
|
var(--palette-foreground-divider-dark-alpha)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,28 @@ import { Subject } from 'rxjs';
|
|||||||
export class LandingPageComponent implements OnDestroy, OnInit {
|
export class LandingPageComponent implements OnDestroy, OnInit {
|
||||||
public currentYear = format(new Date(), 'yyyy');
|
public currentYear = format(new Date(), 'yyyy');
|
||||||
public demoAuthToken: string;
|
public demoAuthToken: string;
|
||||||
|
public testimonials = [
|
||||||
|
{
|
||||||
|
author: 'Philipp',
|
||||||
|
country: 'Germany 🇩🇪',
|
||||||
|
quote: `Super slim app with a great user interface. On top of that, it's open source.`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
author: 'Onur',
|
||||||
|
country: 'Switzerland 🇨🇭',
|
||||||
|
quote: `Ghostfolio looks like the perfect portfolio tracker that I've been searching for all these years.`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
author: 'Ivo',
|
||||||
|
country: 'Netherlands 🇳🇱',
|
||||||
|
quote: `A fantastic open source app to track my investments across platforms. Love the simplicity of its design and the depth of the insights.`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
author: 'Damjan',
|
||||||
|
country: 'Slovenia 🇸🇮',
|
||||||
|
quote: `Ghostfolio helps me track all my investments in one place, it has a built-in portfolio analyzer and a very neat, seamless user interface.`
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
private unsubscribeSubject = new Subject<void>();
|
private unsubscribeSubject = new Subject<void>();
|
||||||
|
|
||||||
|
@ -107,6 +107,31 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="row my-5">
|
||||||
|
<div class="col-12">
|
||||||
|
<h2 class="h4 mb-1 text-center">
|
||||||
|
What our <strong>users</strong> are saying
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
<div *ngFor="let testimonial of testimonials" class="col-md-6">
|
||||||
|
<div class="d-flex flex-row py-3">
|
||||||
|
<div class="d-flex justify-content-center">
|
||||||
|
<gf-logo
|
||||||
|
class="mr-3 mt-2 pt-1"
|
||||||
|
size="medium"
|
||||||
|
[hideName]="true"
|
||||||
|
></gf-logo>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<div>{{ testimonial.quote }}</div>
|
||||||
|
<div class="mt-2 text-muted">
|
||||||
|
— {{ testimonial.author }}, {{ testimonial.country }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="row my-5">
|
<div class="row my-5">
|
||||||
<div class="col-md-6 offset-md-3">
|
<div class="col-md-6 offset-md-3">
|
||||||
<h2 class="h4 mb-1 text-center">
|
<h2 class="h4 mb-1 text-center">
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "ghostfolio",
|
"name": "ghostfolio",
|
||||||
"version": "1.77.0",
|
"version": "1.78.0",
|
||||||
"homepage": "https://ghostfol.io",
|
"homepage": "https://ghostfol.io",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
Reference in New Issue
Block a user