Increased the version number

(changelog) Updated the changelog
This commit is contained in:
sercan 2021-05-06 17:11:12 +03:00
parent f6b4ca0880
commit 4ccce1b423
4 changed files with 25 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@fuse/demo", "name": "@fuse/demo",
"version": "12.2.0", "version": "12.3.0",
"license": "https://themeforest.net/licenses/standard", "license": "https://themeforest.net/licenses/standard",
"private": true, "private": true,
"scripts": { "scripts": {

View File

@ -1,4 +1,4 @@
import { Version } from '@fuse/version/version'; import { Version } from '@fuse/version/version';
const __FUSE_VERSION__ = '12.2.0'; const __FUSE_VERSION__ = '12.3.0';
export const FUSE_VERSION = new Version(__FUSE_VERSION__).full; export const FUSE_VERSION = new Version(__FUSE_VERSION__).full;

View File

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

View File

@ -10,6 +10,28 @@ export class ChangelogComponent
{ {
changelog: any[] = [ changelog: any[] = [
// v12.3.0
{
version : 'v12.3.0',
releaseDate: 'May 07, 2021',
changes : [
{
type: 'Added',
list: [
'(apps/notes) New Notes app',
'(fuse/masonry) Added a component for creating fast Masonry-like layouts'
]
},
{
type: 'Changed',
list: [
'(apps/tasks) Tweaked the hover color on tasks list for better consistency',
'(apps/mailbox) Adjusted the app title font size for better consistency',
'(apps/mailbox) Used shadow on threads for better consistency'
]
}
]
},
// v12.2.0 // v12.2.0
{ {
version : 'v12.2.0', version : 'v12.2.0',