mirror of
				https://github.com/gilshahar7/NotifyMusic.git
				synced 2025-11-04 09:06:17 +00:00 
			
		
		
		
	Removed unnecessary lines from debugging.
This commit is contained in:
		
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							@ -5,7 +5,7 @@ include $(THEOS)/makefiles/common.mk
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
TWEAK_NAME = NotifyMusic
 | 
					TWEAK_NAME = NotifyMusic
 | 
				
			||||||
NotifyMusic_FILES = Tweak.xm
 | 
					NotifyMusic_FILES = Tweak.xm
 | 
				
			||||||
NotifyMusic_FRAMEWORKS = UIKit MediaPlayer
 | 
					NotifyMusic_FRAMEWORKS = UIKit
 | 
				
			||||||
NotifyMusic_LIBRARIES = bulletin
 | 
					NotifyMusic_LIBRARIES = bulletin
 | 
				
			||||||
 | 
					
 | 
				
			||||||
include $(THEOS_MAKE_PATH)/tweak.mk
 | 
					include $(THEOS_MAKE_PATH)/tweak.mk
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										20
									
								
								Tweak.xm
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								Tweak.xm
									
									
									
									
									
								
							@ -1,28 +1,13 @@
 | 
				
			|||||||
#import <UIKit/UIKit.h>
 | 
					#import <UIKit/UIKit.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@interface SBApplication
 | 
					 | 
				
			||||||
@end
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@interface SpringBoard
 | 
					 | 
				
			||||||
+(SpringBoard *)sharedApplication;
 | 
					 | 
				
			||||||
-(SBApplication *)_accessibilityFrontMostApplication;
 | 
					 | 
				
			||||||
@end
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@interface SBLockScreenManager
 | 
					@interface SBLockScreenManager
 | 
				
			||||||
+(SBLockScreenManager *)sharedInstance;
 | 
					+(SBLockScreenManager *)sharedInstance;
 | 
				
			||||||
-(BOOL)isUILocked;
 | 
					-(BOOL)isUILocked;
 | 
				
			||||||
@end
 | 
					@end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@interface MPUNowPlayingMetadata
 | 
					 | 
				
			||||||
	@property (nonatomic,readonly) NSString * title; 
 | 
					 | 
				
			||||||
	@property (nonatomic,readonly) NSString * artist;
 | 
					 | 
				
			||||||
	@property (nonatomic,readonly) NSString * album;
 | 
					 | 
				
			||||||
@end
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
@interface MPUNowPlayingController
 | 
					@interface MPUNowPlayingController
 | 
				
			||||||
	@property bool isPlaying;
 | 
						@property bool isPlaying;
 | 
				
			||||||
	@property (nonatomic,readonly) NSString * nowPlayingAppDisplayID;
 | 
						@property (nonatomic,readonly) NSString * nowPlayingAppDisplayID;
 | 
				
			||||||
	@property (nonatomic,readonly) MPUNowPlayingMetadata * currentNowPlayingMetadata;
 | 
					 | 
				
			||||||
	@property (nonatomic,readonly) UIImage * currentNowPlayingArtwork;
 | 
						@property (nonatomic,readonly) UIImage * currentNowPlayingArtwork;
 | 
				
			||||||
	@property (nonatomic,readonly) NSDictionary * currentNowPlayingInfo;
 | 
						@property (nonatomic,readonly) NSDictionary * currentNowPlayingInfo;
 | 
				
			||||||
@end
 | 
					@end
 | 
				
			||||||
@ -30,11 +15,6 @@
 | 
				
			|||||||
@interface JBBulletinManager : NSObject
 | 
					@interface JBBulletinManager : NSObject
 | 
				
			||||||
	+(id)sharedInstance;
 | 
						+(id)sharedInstance;
 | 
				
			||||||
	-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message bundleID:(NSString *)bundleID;
 | 
						-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message bundleID:(NSString *)bundleID;
 | 
				
			||||||
	-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message bundleID:(NSString *)bundleID soundPath:(NSString *)soundPath;
 | 
					 | 
				
			||||||
	-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message bundleID:(NSString *)bundleID soundID:(int)inSoundID;
 | 
					 | 
				
			||||||
	-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message overrideBundleImage:(UIImage *)overridBundleImage;
 | 
					 | 
				
			||||||
	-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message overrideBundleImage:(UIImage *)overridBundleImage soundPath:(NSString *)soundPath;
 | 
					 | 
				
			||||||
	-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message overridBundleImage:(UIImage *)overridBundleImage soundID:(int)inSoundID;
 | 
					 | 
				
			||||||
	-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message bundleID:(NSString *)bundleID hasSound:(BOOL)hasSound soundID:(int)soundID vibrateMode:(int)vibrate soundPath:(NSString *)soundPath attachmentImage:(UIImage *)attachmentImage overrideBundleImage:(UIImage *)overrideBundleImage;
 | 
						-(id)showBulletinWithTitle:(NSString *)title message:(NSString *)message bundleID:(NSString *)bundleID hasSound:(BOOL)hasSound soundID:(int)soundID vibrateMode:(int)vibrate soundPath:(NSString *)soundPath attachmentImage:(UIImage *)attachmentImage overrideBundleImage:(UIImage *)overrideBundleImage;
 | 
				
			||||||
@end
 | 
					@end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user