-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Big Sur-Ventura FindMy to listen for new locations actively
- Loading branch information
Showing
4 changed files
with
105 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
Binary file modified
BIN
+9.74 KB
(100%)
...BlueBubblesHelper.xcworkspace/xcuserdata/tanay.xcuserdatad/UserInterfaceState.xcuserstate
Binary file not shown.
This file contains 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
36 changes: 36 additions & 0 deletions
36
Messages/MacOS-11+/BlueBubblesHelper/FMFSessionDataManager.h
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Headers generated with ktool v1.4.0 | ||
// https://github.com/cxnder/ktool | pip3 install k2l | ||
// Platform: IOS | Minimum OS: 16.0.0 | SDK: 16.0.0 | ||
|
||
|
||
#ifndef FMFSESSIONDATAMANAGER_H | ||
#define FMFSESSIONDATAMANAGER_H | ||
|
||
@class NSSet, NSMutableDictionary; | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
|
||
@interface FMFSessionDataManager : NSObject | ||
|
||
@property (retain, nonatomic) NSSet *fences; // ivar: _fences | ||
@property (retain, nonatomic) NSSet *followers; // ivar: _followers | ||
@property (retain, nonatomic) NSSet *following; // ivar: _following | ||
@property (retain, nonatomic) NSSet *locations; // ivar: _locations | ||
@property (retain, nonatomic) NSMutableDictionary *locationsCache; // ivar: _locationsCache | ||
|
||
|
||
+(id)sharedInstance; | ||
-(id)favoritesOrdered; | ||
-(id)followerForHandle:(id)arg0 ; | ||
-(id)followingForHandle:(id)arg0 ; | ||
-(id)locationForHandle:(id)arg0 ; | ||
-(id)offerExpirationForHandle:(id)arg0 groupId:(id)arg1 ; | ||
-(void)abDidChange; | ||
-(void)abPreferencesDidChange; | ||
|
||
|
||
@end | ||
|
||
|
||
#endif |