v1.5
New features
- About - Me Page (optional):
- Short profile overview
- Skill-Table to show the proficiency of a skill you have
Improvements
- Refactored better Repository pattern (now open type repository instead of one repository per type)
- Some CSS tweaks
Migration
To migrate the SQL database from an earlier version to v1.5:
CREATE TABLE [dbo].[Skills](
[Id] [nvarchar](450) NOT NULL,
[IconUrl] [nvarchar](max) NULL,
[Name] [nvarchar](max) NULL,
[Capability] [nvarchar](max) NULL,
[ProficiencyLevel] [nvarchar](max) NULL,
CONSTRAINT [PK_Skills] PRIMARY KEY CLUSTERED
(
[Id]
)
)
GO
EXEC sp_rename 'dbo.Tag','Tags';
GO