Skip to content

Commit

Permalink
Hot fix for not starting the queue after transferring Bluetooth state…
Browse files Browse the repository at this point in the history
…s back to Bluejay
  • Loading branch information
Jeremy Chiang committed Sep 11, 2020
1 parent 2959964 commit 82e981a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Bluejay.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |spec|
spec.name = 'Bluejay'
spec.version = '0.8.7'
spec.version = '0.8.8'
spec.license = { type: 'MIT', file: 'LICENSE' }
spec.homepage = 'https://github.com/steamclock/bluejay'
spec.authors = { 'Jeremy Chiang' => '[email protected]' }
spec.summary = 'Bluejay is a simple Swift framework for building reliable Bluetooth apps.'
spec.homepage = 'https://github.com/steamclock/bluejay'
spec.source = { git: 'https://github.com/steamclock/bluejay.git', tag: 'v0.8.7' }
spec.source = { git: 'https://github.com/steamclock/bluejay.git', tag: 'v0.8.8' }
spec.source_files = 'Bluejay/Bluejay/*.{h,swift}'
spec.framework = 'SystemConfiguration'
spec.platform = :ios, '11.0'
Expand Down
4 changes: 2 additions & 2 deletions Bluejay/Bluejay.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1084,7 +1084,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 0.8.7;
MARKETING_VERSION = 0.8.8;
PRODUCT_BUNDLE_IDENTIFIER = com.steamclock.Bluejay;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -1111,7 +1111,7 @@
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 0.8.7;
MARKETING_VERSION = 0.8.8;
PRODUCT_BUNDLE_IDENTIFIER = com.steamclock.Bluejay;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
2 changes: 2 additions & 0 deletions Bluejay/Bluejay/Bluejay.swift
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,8 @@ public class Bluejay: NSObject { //swiftlint:disable:this type_body_length
connectedPeripheral = Peripheral(delegate: self, cbPeripheral: peripheral, bluejay: self)
peripheral.delegate = connectedPeripheral
}

queue.start()
}

debugLog("Bluejay with UUID: \(uuid.uuidString) started.")
Expand Down

0 comments on commit 82e981a

Please sign in to comment.