Updated dependencies, increased the version number & updated the changelog

This commit is contained in:
sercan
2021-08-31 09:43:10 +03:00
parent b8f0d9f0b2
commit fe7e2514a6
5 changed files with 418 additions and 391 deletions

View File

@@ -1,3 +1,3 @@
import { Version } from '@fuse/version/version';
export const FUSE_VERSION = new Version('13.5.0').full;
export const FUSE_VERSION = new Version('13.6.0').full;

View File

@@ -981,7 +981,7 @@ export const defaultNavigation: FuseNavigationItem[] = [
icon : 'heroicons_outline:speakerphone',
link : '/docs/changelog',
badge: {
title : '13.5.0',
title : '13.6.0',
classes: 'px-2 bg-yellow-300 text-black rounded-full'
}
},

View File

@@ -10,6 +10,33 @@ export class ChangelogComponent
{
changelog: any[] = [
// v13.6.0
{
version : 'v13.6.0',
releaseDate: 'Aug 31, 2021',
changes : [
{
type: 'Added',
list: [
'(QuickChat) Added the QuickChat bar'
]
},
{
type: 'Changed',
list: [
'(dependencies) Updated Angular & Angular Material to v12.2.3',
'(dependencies) Updated various other packages',
'(layout) Separated the Settings drawer from the layout component'
]
},
{
type: 'Fixed',
list: [
'(@fuse/drawer) Final opacity of the overlay is not permanent due to player being destroyed right after the animation'
]
}
]
},
// v13.5.0
{
version : 'v13.5.0',