Browse Source

Added detection for future dates

beta-future-time
gilshahar7 4 years ago
parent
commit
cd1495e277
4 changed files with 80 additions and 64 deletions
  1. +1
    -60
      .gitignore
  2. +78
    -3
      Tweak.xm
  3. +1
    -1
      control
  4. BIN
      packages/com.gilshahar7.exacttime_1.8_iphoneos-arm.deb

+ 1
- 60
.gitignore View File

@@ -1,60 +1 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xcuserstate

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md

fastlane/report.xml
fastlane/screenshots

#Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode

iOSInjectionProject/
.theos/

+ 78
- 3
Tweak.xm View File

@@ -37,7 +37,12 @@ static NSString *settingsPath = @"/var/mobile/Library/Preferences/com.gilshahar7
if((date != nil) && (format == 1)){
NCNotificationDateLabel *dateLabel = MSHookIvar<NCNotificationDateLabel *>(self, "_dateLabel");
int timeSinceNow = (int)[date timeIntervalSinceNow];
timeSinceNow = timeSinceNow*-1;
bool isFuture = false;
if (timeSinceNow > 0){
isFuture = true;
}else{
timeSinceNow = timeSinceNow*-1;
}
bool addMinutes = [[prefs objectForKey:@"addMinutes"] boolValue];
bool addToCurrent = [[prefs objectForKey:@"addToCurrent"] boolValue];
int hours = timeSinceNow / 3600;
@@ -46,23 +51,43 @@ static NSString *settingsPath = @"/var/mobile/Library/Preferences/com.gilshahar7
if(hours == 0){
if(minutes == 0){
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %im", minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%im ago", minutes];
}
}
}else{
if(minutes == 0){
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih", hours];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih ago", hours];
}
} else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih %im", hours, minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih %im ago", hours, minutes];
}
}
}
}else if(addToCurrent){
if(hours == 0){
if(minutes == 0){
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %im", minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%im ago", minutes];
}
}
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih", hours];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih ago", hours];
}
}
}
if((timeSinceNow/60) >= affectTime){
@@ -100,7 +125,12 @@ static NSString *settingsPath = @"/var/mobile/Library/Preferences/com.gilshahar7
if((date != nil) && (format == 1)){
BSUIRelativeDateLabel *dateLabel = MSHookIvar<BSUIRelativeDateLabel *>(self, "_dateLabel");
int timeSinceNow = (int)[date timeIntervalSinceNow];
timeSinceNow = timeSinceNow*-1;
bool isFuture = false;
if (timeSinceNow > 0){
isFuture = true;
}else{
timeSinceNow = timeSinceNow*-1;
}
bool addMinutes = [[prefs objectForKey:@"addMinutes"] boolValue];
bool addToCurrent = [[prefs objectForKey:@"addToCurrent"] boolValue];
int hours = timeSinceNow / 3600;
@@ -109,23 +139,43 @@ static NSString *settingsPath = @"/var/mobile/Library/Preferences/com.gilshahar7
if(hours == 0){
if(minutes == 0){
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %im", minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%im ago", minutes];
}
}
}else{
if(minutes == 0){
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih", hours];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih ago", hours];
}
} else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih %im", hours, minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih %im ago", hours, minutes];
}
}
}
}else if(addToCurrent){
if(hours == 0){
if(minutes == 0){
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %im", minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%im ago", minutes];
}
}
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih", hours];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih ago", hours];
}
}
}
if((timeSinceNow/60) >= affectTime){
@@ -163,7 +213,12 @@ static NSString *settingsPath = @"/var/mobile/Library/Preferences/com.gilshahar7
if((date != nil) && (format == 1)){
BSUIRelativeDateLabel *dateLabel = MSHookIvar<BSUIRelativeDateLabel *>(self, "_dateLabel");
int timeSinceNow = (int)[date timeIntervalSinceNow];
timeSinceNow = timeSinceNow*-1;
bool isFuture = false;
if (timeSinceNow > 0){
isFuture = true;
}else{
timeSinceNow = timeSinceNow*-1;
}
bool addMinutes = [[prefs objectForKey:@"addMinutes"] boolValue];
bool addToCurrent = [[prefs objectForKey:@"addToCurrent"] boolValue];
int hours = timeSinceNow / 3600;
@@ -172,23 +227,43 @@ static NSString *settingsPath = @"/var/mobile/Library/Preferences/com.gilshahar7
if(hours == 0){
if(minutes == 0){
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %im", minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%im ago", minutes];
}
}
}else{
if(minutes == 0){
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih", hours];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih ago", hours];
}
} else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih %im", hours, minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih %im ago", hours, minutes];
}
}
}
}else if(addToCurrent){
if(hours == 0){
if(minutes == 0){
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %im", minutes];
}else{
dateLabel.text = [NSString stringWithFormat:@"%im ago", minutes];
}
}
}else{
if(isFuture){
dateLabel.text = [NSString stringWithFormat:@"in %ih", hours];
}else{
dateLabel.text = [NSString stringWithFormat:@"%ih ago", hours];
}
}
}
if((timeSinceNow/60) >= affectTime){

+ 1
- 1
control View File

@@ -1,7 +1,7 @@
Package: com.gilshahar7.exacttime
Name: ExactTime
Depends: mobilesubstrate
Version: 1.7
Version: 1.8
Architecture: iphoneos-arm
Description: Shows the exact time of a notification.
Maintainer: gilshahar7

BIN
packages/com.gilshahar7.exacttime_1.8_iphoneos-arm.deb View File


Loading…
Cancel
Save