diff --git a/xdrip.xcodeproj/project.pbxproj b/xdrip.xcodeproj/project.pbxproj index 5aa636af..56460ae3 100644 --- a/xdrip.xcodeproj/project.pbxproj +++ b/xdrip.xcodeproj/project.pbxproj @@ -1348,7 +1348,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = net.johandegraeve.beatit; + PRODUCT_BUNDLE_IDENTIFIER = net.johandegraeve.iosxdripreader; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "xdrip/Transmitter/CGMBluetoothTransmitter/G5/G5Messages/xdrip-Bridging-Header.h"; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -1371,7 +1371,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = net.johandegraeve.beatit; + PRODUCT_BUNDLE_IDENTIFIER = net.johandegraeve.iosxdripreader; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "xdrip/Transmitter/CGMBluetoothTransmitter/G5/G5Messages/xdrip-Bridging-Header.h"; SWIFT_VERSION = 4.2; diff --git a/xdrip/Supporting Files/Info.plist b/xdrip/Supporting Files/Info.plist index 6ad7ef86..f7ec6ea9 100644 --- a/xdrip/Supporting Files/Info.plist +++ b/xdrip/Supporting Files/Info.plist @@ -5,7 +5,7 @@ CFBundleDevelopmentRegion $(DEVELOPMENT_LANGUAGE) CFBundleDisplayName - BeatIt + xDrip CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier @@ -17,9 +17,9 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.0.12 + 2.0.13 CFBundleVersion - 2.0.12 + 2.0.13 LSRequiresIPhoneOS NSBluetoothPeripheralUsageDescription diff --git a/xdrip/View Controllers/Root View Controller/RootViewController.swift b/xdrip/View Controllers/Root View Controller/RootViewController.swift index adaf7be5..bf167948 100644 --- a/xdrip/View Controllers/Root View Controller/RootViewController.swift +++ b/xdrip/View Controllers/Root View Controller/RootViewController.swift @@ -706,7 +706,7 @@ final class RootViewController: UIViewController { // next action is to start or stop the sensor, can also be omitted depending on type of device - also not applicable for follower mode if let transmitterType = UserDefaults.standard.transmitterType { - if !transmitterType.canDetectNewSensor() && !UserDefaults.standard.isMaster { + if !transmitterType.canDetectNewSensor() && UserDefaults.standard.isMaster { // user needs to start and stop the sensor manually if activeSensor != nil { listOfActions[Texts_HomeView.stopSensorActionTitle] = {(UIAlertAction) in self.stopSensor()}