Skip to content

Commit

Permalink
4.1.8 Fix issues when activity name configured using Garmin Connect/E…
Browse files Browse the repository at this point in the history
…xpress is too big
  • Loading branch information
dliedke committed Aug 19, 2022
1 parent 9218d2a commit 4592f10
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Meditate/manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<!-- This is a generated file. It is highly recommended that you DO NOT edit this file. -->
<iq:manifest xmlns:iq="http://www.garmin.com/xml/connectiq" version="3">
<iq:application entry="MeditateApp" id="9abb375dcf7c4ace87ff66f4f773f6c8" launcherIcon="@Drawables.launcherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watch-app" version="4.1.7">
<iq:application entry="MeditateApp" id="9abb375dcf7c4ace87ff66f4f773f6c8" launcherIcon="@Drawables.launcherIcon" minSdkVersion="3.0.0" name="@Strings.AppName" type="watch-app" version="4.1.8">
<iq:products>
<iq:product id="approachs62"/>
<iq:product id="d2air"/>
Expand Down
2 changes: 1 addition & 1 deletion Meditate/source/activity/MeditateActivity.mc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class MediteActivity extends HrvAlgorithms.HrvAndStressActivity {
var finalActivityName = stringReplace(activityName,"[time]", sessionTimeString);

// If the generated name is too big, use only default name
if (finalActivityName.length() > 23) {
if (finalActivityName.length() > 21) {
finalActivityName = Ui.loadResource(Rez.Strings.meditateYogaActivityName);
}

Expand Down
8 changes: 5 additions & 3 deletions MeditateStoreDescription.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
Totally free application developed by vtrifonov and compiled/enhanced for newer Garmin watch models by dliedke.
Totally free application developed by vtrifonov and compiled/enhanced for newer Garmin watch models by dliedke. (if contacting me using the link this screen, I would appreciate if you provide your email so I can reply back and help)

A meditation/yoga app that tracks as an activity the heart rate, stress, respiration rate, heart rate variability (HRV) and provides vibration alerts.
A meditation/yoga app that tracks as an activity the heart rate, stress, respiration rate, heart rate variability (HRV), provides vibration alerts and heart rate chart.

Touch and hold the screen (Touch devices) or hold the left middle button (Button only devices) to edit the meditation sessions, properties and global settings.

Touch screen or click Start button to start meditation session. Use lap/back button to pause/resume. Use start button to end the meditation session.

Set Activity Name as "Location & Device Activity Name" in Garmin Connect Settings (https://connect.garmin.com/modern/settings) for activity name generated to be saved correctly.

Set custom activity name using Garmin Connect or Garmin Express, refer to guide https://support.garmin.com/en-US/?faq=SPo0TFvhQO04O36Y5TYRh5 for help.

Use "Yoga" type activity to correctly capture Respiration rate metrics due to bug in Breath work activity.

Avoid moving your wrist to better capture HRV and Respiration rate metrics. 
Avoid moving your wrist to better capture HRV and Respiration rate metrics.

User Guide (explains HRV metrics details and how to use application):

Expand Down

0 comments on commit 4592f10

Please sign in to comment.