Skip to content

Commit

Permalink
3.4.0 - Removed 1h option due to out of memory issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dliedke committed Dec 16, 2023
1 parent c91d165 commit ecf7392
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 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="57843a03841b4410aff4e4c427c43caf" launcherIcon="@Drawables.launcherIcon" minSdkVersion="1.4.0" name="@Strings.AppName" type="watch-app" version="3.3.0">
<iq:application entry="MeditateApp" id="57843a03841b4410aff4e4c427c43caf" launcherIcon="@Drawables.launcherIcon" minSdkVersion="1.4.0" name="@Strings.AppName" type="watch-app" version="3.4.0">
<iq:products>
<iq:product id="fr235"/>
</iq:products>
Expand Down
8 changes: 0 additions & 8 deletions Meditate/source/sessionSettings/SessionModel.mc
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,6 @@ class SessionModel {
me.vibePattern = VibePattern.LongContinuous;
me.activityType = "Meditate";
}

// 60min
if (index == 7) {
me.time = 60 * 60;
me.color = Gfx.COLOR_BLUE;
me.vibePattern = VibePattern.LongContinuous;
me.activityType = "Meditate";
}
}

var time;
Expand Down
4 changes: 2 additions & 2 deletions Meditate/source/storage/SessionStorage.mc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ using Toybox.Graphics as Gfx;
class SessionStorage {
function initialize() {
mSelectedSessionIndex = 0;
me.mSessionsCount = 8;
me.mSessionsCount = 7;
me.loadSelectedSession();
}

Expand Down Expand Up @@ -32,7 +32,7 @@ class SessionStorage {
}

function getSessionsCount() {
return 8;
return 7;
}

function getSelectedSessionIndex() {
Expand Down

0 comments on commit ecf7392

Please sign in to comment.