mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2024-10-30 09:18:46 +00:00
Increased the version number
(changelog) Updated changelog
This commit is contained in:
parent
cad136c0e5
commit
ee1caef303
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@fuse/demo",
|
"name": "@fuse/demo",
|
||||||
"version": "12.3.0",
|
"version": "13.0.0",
|
||||||
"license": "https://themeforest.net/licenses/standard",
|
"license": "https://themeforest.net/licenses/standard",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
import { Version } from '@fuse/version/version';
|
import { Version } from '@fuse/version/version';
|
||||||
|
|
||||||
export const FUSE_VERSION = new Version('12.3.0').full;
|
export const FUSE_VERSION = new Version('13.0.0').full;
|
||||||
|
|
|
@ -920,7 +920,7 @@ export const defaultNavigation: FuseNavigationItem[] = [
|
||||||
icon : 'heroicons_outline:speakerphone',
|
icon : 'heroicons_outline:speakerphone',
|
||||||
link : '/docs/changelog',
|
link : '/docs/changelog',
|
||||||
badge: {
|
badge: {
|
||||||
title : '12.3.0',
|
title : '13.0.0',
|
||||||
classes: 'px-2 bg-yellow-300 text-black rounded-full'
|
classes: 'px-2 bg-yellow-300 text-black rounded-full'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
/* eslint-disable max-len */
|
||||||
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
|
@ -10,6 +11,34 @@ export class ChangelogComponent
|
||||||
{
|
{
|
||||||
changelog: any[] = [
|
changelog: any[] = [
|
||||||
|
|
||||||
|
// v13.0.0
|
||||||
|
{
|
||||||
|
version : 'v13.0.0',
|
||||||
|
releaseDate: 'May 15, 2021',
|
||||||
|
changes : [
|
||||||
|
{
|
||||||
|
type: 'Added',
|
||||||
|
list: [
|
||||||
|
'(pages/settings) New Settings page',
|
||||||
|
'(support) "_redirects" file for Netlify support'
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'Changed',
|
||||||
|
list: [
|
||||||
|
'(dependencies) Updated Angular & Angular Material to v12.0.0',
|
||||||
|
'(dependencies) Updated various other packages',
|
||||||
|
'(linting) Migrated over to the ESLint',
|
||||||
|
'(routing) Use "corrected" behavior for relative link resolution (https://github.com/angular/angular/pull/22394) as it\'s the default value starting from Angular v11 (https://github.com/angular/angular/pull/25609)',
|
||||||
|
'(refactoring) Moved *ngFor directives to their separate <ng-container> element',
|
||||||
|
'(apps/ecommerce) Tweaked the hover color on inventory list for better consistency',
|
||||||
|
'(apps/chat) Tweaked the hover color on lists for better consistency',
|
||||||
|
'(apps/contacts) Tweaked the hover color on contact list for better consistency',
|
||||||
|
'(apps/tasks) Visual improvements'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
// v12.3.0
|
// v12.3.0
|
||||||
{
|
{
|
||||||
version : 'v12.3.0',
|
version : 'v12.3.0',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user