Skip to content

Commit 5628710

Browse files
authored
Merge pull request #5 from flatlogic/upgrade_ng_cli_version
fixed daily line chart, changed texts about angular version
2 parents 76572d0 + dea8836 commit 5628710

File tree

10 files changed

+18
-12
lines changed

10 files changed

+18
-12
lines changed

changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Changelog
22

3-
## [5.2.8]
3+
## [5.2.9]
4+
### Fixed
45

6+
- fixed daily line chart
7+
- changed texts about angular version;
8+
- changed date on footer;
9+
10+
## [5.2.8]
511
### Updated
612

713
- Updated the Angular builder

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sing-app",
3-
"version": "5.2.8",
3+
"version": "5.2.9",
44
"description": "Sing Dashboard App with Angular 7.0 Final Release support by Flatlogic",
55
"scripts": {
66
"install": "napa",

src/app/app.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const baseURLApi = `${hostApi}${portApi ? `:${portApi}` : ``}`;
1111
export class AppConfig {
1212
config = {
1313
name: 'sing',
14-
title: 'Sing Dashboard App with Angular 8.0 support by Flatlogic',
14+
title: 'Sing Dashboard App with Angular 11.2 support by Flatlogic',
1515
version: '4.0.0',
1616
remote: 'https://flatlogic-node-backend.herokuapp.com',
1717
isBackend: environment.backend,

src/app/layout/layout.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<router-outlet></router-outlet>
3030
</div>
3131
<footer class="content-footer">
32-
2020 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com" target="_blank">Flatlogic</a>
32+
2021 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com" target="_blank">Flatlogic</a>
3333
</footer>
3434
</main>
3535
</div>

src/app/layout/navbar/navbar.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h6 class="title">
9393
</span>
9494
Jess Smith
9595
</h6>
96-
<p class="text">Hi there! <br> This is a completely new version of Sing App <br> built with <strong class="text-danger">Angular 8.0 Final Release</strong> </p>
96+
<p class="text">Hi there! <br> This is a completely new version of Sing App <br> built with <strong class="text-danger">Angular 11.2 Final Release</strong> </p>
9797
</div>
9898
</div>
9999
</li>

src/app/pages/analytics/components/main-chart/main-chart.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Component, ViewEncapsulation, Input } from '@angular/core';
1+
import { Component, ViewEncapsulation, Input, HostListener } from '@angular/core';
22

33
declare let jQuery: any;
44

@@ -117,7 +117,7 @@ export class MainChartComponent {
117117
},
118118
yaxis: {
119119
tickColor: '#f8f9fa',
120-
max: 8,
120+
max: 0.006,
121121
font: {
122122
lineHeight: 11,
123123
weight: 400,

src/app/pages/error/error.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ <h1 class="error-code">404</h1>
2424
</main>
2525

2626
<footer class="page-footer">
27-
2019 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com" target="_blank">Flatlogic</a>
27+
2021 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com" target="_blank">Flatlogic</a>
2828
</footer>
2929
</div>

src/app/pages/login/login.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ <h5 class="auth-logo animated fadeInUp">
4949
<a class="d-block text-center" routerLink="/register">Create an Account</a>
5050
</widget>
5151
<footer class="auth-footer">
52-
2019 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com" target="_blank">Flatlogic</a>
52+
2021 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com" target="_blank">Flatlogic</a>
5353
</footer>
5454
</div>

src/app/pages/package/package.template.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h2 class="page-title">Sing App - <span class="fw-semi-bold">Package</span>
2-
<small>More than 2000 man-hours already invested!</small>
2+
<small> More than 2000 man-hours already invested!</small>
33
</h2>
44
<p class="lead">Over 8,000 developers worldwide chose our bootstrap admin templates to build their web applications,
55
SAAS and E-Commerce platforms faster. Jump in to burn through your gig too!</p>
@@ -57,7 +57,7 @@ <h3>Angular 2+ Version</h3>
5757
your expect your application to have a well-engineered structure and development workflow. If you are familiar
5858
with Java or .NET ecosystems Angular is definitely your choice.
5959
</p>
60-
<p>Our app is built on top of the latest <strong>Angular 8.0</strong> version and
60+
<p>Our app is built on top of the latest <strong>Angular 11.2</strong> version and
6161
uses <a href="https://webpack.js.org/">Webpack</a> Module Bundler and NPM as a package manager, so everything
6262
works out of the box! <br><br></p>
6363
<a class="btn btn-link btn-lg btn-block disabled" href="#">(You are here)</a>

src/app/pages/register/register.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h5 class="auth-logo animated fadeInUp">
4949
<a class="d-block text-center" routerLink="/login">Enter the account</a>
5050
</widget>
5151
<footer class="auth-footer">
52-
2019 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com"
52+
2021 &copy; Sing App Angular - Angular Admin Dashboard Template Made by <a href="https://flatlogic.com"
5353
target="_blank">Flatlogic</a>
5454
</footer>
5555
</div>

0 commit comments

Comments
 (0)