Increased the version number & updated the changelog

This commit is contained in:
sercan 2021-08-12 17:04:57 +03:00
parent 6de6a07778
commit 67d25012ec
4 changed files with 33 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@fuse/demo",
"version": "13.4.0",
"version": "13.5.0",
"description": "Fuse - Angular Admin Template and Starter Project",
"author": "https://themeforest.net/user/srcn",
"license": "https://themeforest.net/licenses/standard",

View File

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

View File

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

View File

@ -10,6 +10,36 @@ export class ChangelogComponent
{
changelog: any[] = [
// v13.5.0
{
version : 'v13.5.0',
releaseDate: 'Aug 13, 2021',
changes : [
{
type: 'Changed',
list: [
'Huge performance improvement due to Angular v12.2.0',
'(dependencies) Updated Angular & Angular Material to v12.2.1',
'(dependencies) Updated various other packages',
'(tailwindcss) Removed old jsdoc from the config file',
'(@fuse/theming) Better structuring on the themes.scss file',
'(@fuse) Disabled Angular Material "theme" sanity check since we use "all-component-themes" without a color map',
'(apps/mailbox) Style improvements',
'Removed empty "styles" from component decorators',
'Decreased budget sizes since new Fuse is a lot smaller compared to the one with the old design'
]
},
{
type: 'Fixed',
list: [
'(@fuse/overrides) Quill editor is not styled correctly by default',
'(@fuse/confirmation) Dialog size cannot be updated using dialogRef\'s "updateSize" method',
'(apps/mailbox) Compose dialog doesn\'t work correctly on small height resolutions',
'(ui/page-layouts) Demo layout navigation appearance is not correct'
]
}
]
},
// v13.4.0
{
version : 'v13.4.0',