Browse Source

Version 1.0.2

fixed the date not changing at 00:00 if the Lockscreen is shown,
fixed iPads positioning when changing orientations
pull/1/head
Gil Shahar 5 years ago
parent
commit
87f76f2a15
No account linked to committer's email address
3 changed files with 29 additions and 17 deletions
  1. +28
    -16
      Tweak.xm
  2. +1
    -1
      control
  3. BIN
      packages/com.gilshahar7.duplexcalendar_1.0.2_iphoneos-arm.deb

+ 28
- 16
Tweak.xm View File

@@ -1,13 +1,17 @@
#define kScreenWidth [[UIScreen mainScreen] bounds].size.width
#import <AudioToolbox/AudioToolbox.h>
#import <AudioToolbox/AudioServices.h>
@interface SBTodayTableHeaderView : UIView
-(NSString *)lunarDateHeaderString;
@end

@interface SBAnimationSettings
@end

@interface SBFadeAnimationSettings
@property(retain, nonatomic) SBAnimationSettings *dateInSettings;
@end

@interface SBFLockScreenDateView : UIView
@property (nonatomic, assign) UILabel *duplexCalendarLabel;
@property (nonatomic, assign) SBTodayTableHeaderView *todayHeaderView;
@property (nonatomic, assign) NSString *todayHeaderViewText;
@property bool dateHidden;
-(id)_dateFont;
@@ -21,9 +25,6 @@
@end

@interface _UILegibilityLabel : _UILegibilityView
@property (nonatomic, assign) NSString* string;
@property (nonatomic, assign) UIFont* font;

@end

extern "C" CFNotificationCenterRef CFNotificationCenterGetDistributedCenter(void);
@@ -73,14 +74,14 @@ static float sizeheight = 0.0;
NSString *offsetYTextField = [prefs objectForKey:@"offsetYTextField"];
NSString *FontSizeTextField = [prefs objectForKey:@"FontSizeTextField"];
if(originx <= 0.0)
{
//if(originx <= 0.0)
//{
UILabel *originalLabel = MSHookIvar<UILabel *>(self, "_dateLabel");
originx = originalLabel.frame.origin.x;
originy = originalLabel.frame.origin.y;
sizewidth = originalLabel.frame.size.width;
sizeheight = originalLabel.frame.size.height;
}
//}
[self.duplexCalendarLabel setFrame:CGRectMake(originx-50+ [offsetXTextField floatValue], originy + 19 + [offsetYTextField floatValue], sizewidth+100, sizeheight)];
UIFont *font = self.duplexCalendarLabel.font;
if([FontSizeTextField floatValue] == 0){
@@ -95,32 +96,33 @@ static float sizeheight = 0.0;
self.duplexCalendarLabel.hidden = false;
}
}

}

-(void)_updateLabels{
%orig;
[self layoutDuplexCalendarLabel];
if(!self.todayHeaderViewText){
//if(!self.todayHeaderViewText){
self.todayHeaderViewText = [stattodayHeaderView lunarDateHeaderString];
}
//}
self.duplexCalendarLabel.text = self.todayHeaderViewText;

%orig;
}
-(void)_layoutDateLabel {
[self layoutDuplexCalendarLabel];
%orig;
[self layoutDuplexCalendarLabel];
_UILegibilityLabel *originalLegibilityLabel = MSHookIvar<_UILegibilityLabel *>(self, "_legibilityDateLabel");
[originalLegibilityLabel setFrame:CGRectMake(originx, originy - 3, sizewidth, sizeheight)];
}
-(void)updateFormat{
[self layoutDuplexCalendarLabel];
%orig;
[self layoutDuplexCalendarLabel];
}
-(void)layoutSubviews {
[self layoutDuplexCalendarLabel];
%orig;
[self layoutDuplexCalendarLabel];
}


@@ -135,6 +137,16 @@ static float sizeheight = 0.0;

%end

%hook SBFadeAnimationSettings

- (void)setDefaultValues {

%orig;

self.dateInSettings = nil;

}
%end

%ctor{
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(),

+ 1
- 1
control View File

@@ -1,7 +1,7 @@
Package: com.gilshahar7.duplexcalendar
Name: DuplexCalendar
Depends: mobilesubstrate
Version: 1.0
Version: 1.0.2
Architecture: iphoneos-arm
Description: Add the alternate calendar label to the LockScreen on iOS 9.
Maintainer: gilshahar7

BIN
packages/com.gilshahar7.duplexcalendar_1.0.2_iphoneos-arm.deb View File


Loading…
Cancel
Save