From 895ef89ef038d59745aec95756202b875799038f Mon Sep 17 00:00:00 2001 From: Hikmatulloh Hari Mukti Date: Tue, 5 Dec 2023 21:14:01 +0700 Subject: [PATCH] update help text --- src/components/ToolModeSelector.vue | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/components/ToolModeSelector.vue b/src/components/ToolModeSelector.vue index cd8be0f..714f867 100644 --- a/src/components/ToolModeSelector.vue +++ b/src/components/ToolModeSelector.vue @@ -27,10 +27,12 @@ import { ToolMode } from '@/spec/activity-service' one at a time.

- We will combine multiple activities into one continuous activity file. Two sequential - sessions of the same sport will be merged into one session. If the sport is different, it - will be placed in separate sessions. This process will continue until all sessions are - combined. + We will combine multiple activities into one continuous activity file. This is how we will + do it: we will iterate through all activities. Starting from the current activity's + iteration, we will pick the last session and combine it with the first session of the next + activity only when the sport is a match. If the sport is different, all sessions of the + next activity will be appended as they are. This process will continue until all + activities are combined.

We will create new Activity File for every Sessions in all activities.