Last active
January 2, 2017 17:57
-
-
Save viktoschi/6229bff8153ccda84599e3a2375196d3 to your computer and use it in GitHub Desktop.
OpenAPS changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<string name="actions">AC</string> | |
<string name="app_name">AndroidAPS</string> | |
<string name="configbuilder">Conf</string> | |
<string name="openapsma">oAPS</string> | |
<string name="overview">ov</string> | |
<string name="profileviewer">NS</string> | |
<string name="tempbasals">Tmps</string> | |
<string name="careportal">CP</string> | |
<string name="danarpump">Dana</string> | |
<string name="circadian_percentage_profile">CPP</string> | |
</resources> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<string-array name="aps_modeArray"> | |
<item>@string/closedloop</item> | |
<item>@string/openloop</item> | |
</string-array> | |
<string-array name="aps_modeValues" translatable="false"> | |
<item>closed</item> | |
<item>open</item> | |
</string-array> | |
<string-array name="languagesArray"> | |
<item>@string/en_lang</item> | |
<item>@string/cs_lang</item> | |
<item>@string/de_lang</item> | |
<item>@string/bg_lang</item> | |
<item>@string/es_lang</item> | |
<item>@string/ko_lang</item> | |
<item>SHORT</item> | |
</string-array> | |
<string-array name="languagesValues" translatable="false"> | |
<item>en</item> | |
<item>cs</item> | |
<item>de</item> | |
<item>bg</item> | |
<item>es</item> | |
<item>ko</item> | |
<item>ksh</item> | |
</string-array> | |
</resources> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var maxSafeBasal = Math.min(profile.max_basal, 6 * profile.max_daily_basal, 8 * profile.current_basal); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android:id="@+id/objectives_fake_layout" | |
android:visibility="visible"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
maxBg = verifyHardLimits(maxBg, "maxBg", 80, 270); | |
targetBg = verifyHardLimits(targetBg, "targetBg", 72, 200); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Integer maxBasalMult = 8; | |
Integer maxBasalFromDaily = 6; | |
....... | |
Integer maxBasalMult = 8; | |
Integer maxBasalFromDaily = 6; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment