Skip to content

Commit

Permalink
Merge pull request #28 from DSaladinCH/develop
Browse files Browse the repository at this point in the history
Version 0.14.1
  • Loading branch information
DominicSaladin authored Jan 8, 2024
2 parents be9669b + 7bbdf3b commit 13b3432
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion speed-time/ViewModel/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ private void UpdateTrackedTimes()
continue;

TimeSpan gapTime = trackedTimes[i + 1].TrackingStarted - trackedTimes[i].TrackingStopped;
if (gapTime.TotalHours < 0)
if (gapTime.TotalHours <= 0)
continue;

TrackTime gap = new(trackedTimes[i].TrackingStopped, string.Format(Language.SpeedTime.gap_text, gapTime.TotalHours.ToString("N2")), false)
Expand Down
2 changes: 1 addition & 1 deletion speed-time/speed-time.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Version>0.14</Version>
<Version>0.14.1</Version>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile></AssemblyOriginatorKeyFile>
</PropertyGroup>
Expand Down

0 comments on commit 13b3432

Please sign in to comment.