Skip to content

v1.1.0

Compare
Choose a tag to compare
@tonyrix tonyrix released this 28 Apr 15:34
· 2 commits to main since this release
2f1005c

New Features

  • Workout Ratings and Notes: Added a star rating and workout notes section to the end of a workout. New database migration required.
  • Added charts to exercise history and metric history
  • Added date range filter to metric history calendar
  • Moved metric definition menu to Settings page
  • Various UI tweaks and additions to improve usability
  • Refactored projects. Moved Unshackled.Fitness.Core.Web into Unshackled.Fitness.Core

Bug Fixes

  • Fixed issue where you could not complete a template duplication.
  • Fixed update commands to force change tracking on titles/descriptions when only string case changes occurred.

Database Migration Required

Run the following migration commands for the database you use.

# MS SQL Server
dotnet ef migrations add v1.1.0 -c MsSqlServerDbContext -s ../Unshackled.Fitness.Web -o Migrations
dotnet ef database update --context MsSqlServerDbContext -s ../Unshackled.Fitness.Web
# MySQL Server
dotnet ef migrations add v1.1.0 -c MySqlServerDbContext -s ../Unshackled.Fitness.Web -o Migrations
dotnet ef database update --context MySqlServerDbContext -s ../Unshackled.Fitness.Web
# PostgreSQL Server
dotnet ef migrations add v1.1.0 -c PostgresSqlServerDbContext -s ../Unshackled.Fitness.Web -o Migrations
dotnet ef database update --context PostgreSqlServerDbContext -s ../Unshackled.Fitness.Web

Full Changelog: v1.0.0...v1.1.0