File tree 4 files changed +9
-4
lines changed
4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 1
1
<!-- 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" >
2
- <iq : application entry =" ElPrimeroApp" id =" 2C83218064D49991A5F44E8292B3C90A" launcherIcon =" @Drawables.LauncherIcon" minSdkVersion =" 1.3.1" name =" @Strings.AppName" type =" watchface" version =" 1.6.5 " >
2
+ <iq : application entry =" ElPrimeroApp" id =" 2C83218064D49991A5F44E8292B3C90A" launcherIcon =" @Drawables.LauncherIcon" minSdkVersion =" 1.3.1" name =" @Strings.AppName" type =" watchface" version =" 1.6.6 " >
3
3
<iq : products >
4
4
<iq : product id =" fenix5" />
5
5
<iq : product id =" fenix5plus" />
Original file line number Diff line number Diff line change 1
1
<properties >
2
- <property id =" appVersion" type =" string" >1.6.5 </property >
2
+ <property id =" appVersion" type =" string" >1.6.6 </property >
3
3
<property id =" backgroundColor" type =" number" >85</property >
4
4
<property id =" twoHertzMode" type =" boolean" >true</property >
5
5
<property id =" utcOffset" type =" number" >0</property >
Original file line number Diff line number Diff line change 1
1
<strings >
2
2
<string id =" AppName" >ElPrimero</string >
3
- <string id =" InternalVersion" >1.6.5 </string >
3
+ <string id =" InternalVersion" >1.6.6 </string >
4
4
<string id =" WeekDays" >SUNMONTUEWEDTHUFRISAT</string >
5
5
<string id =" Months" >JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC</string >
6
6
<string id =" Icons" >ZABSN</string >
Original file line number Diff line number Diff line change @@ -633,22 +633,27 @@ class ElPrimeroView extends WatchUi.WatchFace {
633
633
// the state of this View and prepare it to be shown. This includes
634
634
// loading resources into memory.
635
635
function onShow () {
636
- mState .reset (false );
636
+ mState .reset (true );
637
+ System .println (" onShow" );
637
638
}
638
639
639
640
// Called when this View is removed from the screen. Save the
640
641
// state of this View here. This includes freeing resources from
641
642
// memory.
642
643
function onHide () {
644
+ System .println (" onHide" );
643
645
}
644
646
645
647
// The user has just looked at their watch. Timers and animations may be started here.
646
648
function onExitSleep () {
649
+ System .println (" onExitSleep" );
647
650
mState .reset (false );
651
+
648
652
}
649
653
650
654
// Terminate any active timers and prepare for slow updates.
651
655
function onEnterSleep () {
656
+ System .println (" onEnterSleep" );
652
657
mState .reset (true );
653
658
}
654
659
You can’t perform that action at this time.
0 commit comments