Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
LiamMorrow committed Nov 15, 2024
1 parent e0652a5 commit 0fc0e49
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion LiftLog.Ui/Services/PlaintextExportService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ string unit
.PotentialSets.Where(x => x.Set is not null)
.Select(set => new ExportedSetCsvRow(
session.Id.ToString(),
session.Date.ToDateTime(set.Set!.CompletionTime!).ToString("o"),
// s=sortable, ISO 8601 format without milliseconds or timezone
session
.Date.ToDateTime(set.Set!.CompletionTime!, DateTimeKind.Local)
.ToString("s"),
exercise.Blueprint.Name,
set.Weight,
unit,
Expand Down
3 changes: 1 addition & 2 deletions release_notes/whatsnew-en-AU
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
Urls can now be added to exercises to externally link to extra information/instructions on how to complete the exercise.
This update also fixes a couple of bugs with progressive overload and stats
LiftLog can now export your data in plain text as a CSV!

0 comments on commit 0fc0e49

Please sign in to comment.