Skip to content

Releases: unshackled-fitness/Unshackled.Fitness

v.1.1.1

24 May 13:54
Compare
Choose a tag to compare

Bug Fixes

  • Fixed issue where empty metric definition groups were not removed when the last metric definition was deleted.

Other Changes

  • Small UI changes on dashboard.

Database Changes##

No database changes were made. No new database migrations are required.

v1.1.0

28 Apr 15:34
2f1005c
Compare
Choose a tag to compare

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

v1.0.0

22 Mar 16:05
Compare
Choose a tag to compare

First release of Unshackled Fitness.