diff --git a/apps/ios/ChangeLog b/apps/ios/ChangeLog index 1873649f9..b6a386bcb 100644 --- a/apps/ios/ChangeLog +++ b/apps/ios/ChangeLog @@ -6,3 +6,4 @@ 0.06: Fix (not) popupping up old messages 0.07: Added more details from music (instead of Undefined), added more app identifiers 0.08: Added more app identifiers, added 'cannot display' in case a message goes empty because of replacements +0.09: Enable 'ams' on new firmwares (ams/ancs can now be enabled individually) (fix #1365) diff --git a/apps/ios/boot.js b/apps/ios/boot.js index d317c23b0..50286c4a6 100644 --- a/apps/ios/boot.js +++ b/apps/ios/boot.js @@ -1,4 +1,5 @@ bleServiceOptions.ancs = true; +if (NRF.amsIsActive) bleServiceOptions.ams = true; // amsIsActive was added at the same time as the "am" option Bangle.ancsMessageQueue = []; /* Handle ANCS events coming in, and fire off 'notify' events diff --git a/apps/ios/metadata.json b/apps/ios/metadata.json index 26e474f89..0083c66b0 100644 --- a/apps/ios/metadata.json +++ b/apps/ios/metadata.json @@ -1,7 +1,7 @@ { "id": "ios", "name": "iOS Integration", - "version": "0.08", + "version": "0.09", "description": "Display notifications/music/etc from iOS devices", "icon": "app.png", "tags": "tool,system,ios,apple,messages,notifications",