mirror of
https://github.com/Burrit0z/kai
synced 2025-07-01 07:36:48 +00:00
horizontal, brrrr
This commit is contained in:
@ -10,9 +10,9 @@ NSTimer *queueTimer = nil;
|
||||
instance = self;
|
||||
if (self) {
|
||||
self.stack = [[KAIStackView alloc] init];
|
||||
self.stack.axis = 1;
|
||||
self.stack.axis = kaiAlign==0 ? 1 : 0;
|
||||
self.stack.distribution = 0;
|
||||
self.stack.spacing = 0;
|
||||
self.stack.spacing = kaiAlign==0 ? 0 : spacing;
|
||||
self.stack.alignment = 0;
|
||||
self.oldCountOfDevices = -100;
|
||||
self.queued = NO;
|
||||
|
2
Kai.h
2
Kai.h
@ -57,6 +57,7 @@ double cornerRadius;
|
||||
double bannerWidthFactor;
|
||||
double horizontalOffset;
|
||||
double bannerAlpha;
|
||||
double kaiAlign;
|
||||
|
||||
//by importing here, I can use vars in the .mm files
|
||||
#import "KAIBatteryCell.mm"
|
||||
@ -127,6 +128,7 @@ static void preferencesChanged()
|
||||
textColor = numberForValue(@"textColor", 0);
|
||||
bannerAlpha = numberForValue(@"bannerAlpha", 1);
|
||||
showAllMinusInternal = boolValueForKey(@"showAllMinusInternal", NO);
|
||||
kaiAlign = numberForValue(@"kaiAlign", 0);
|
||||
|
||||
if(disableGlyphs) {
|
||||
glyphSize = 0;
|
||||
|
@ -1,9 +1,9 @@
|
||||
Package: com.burritoz.kai
|
||||
Name: Kai
|
||||
Version: 0.9.9~3
|
||||
Version: 0.9.9~4
|
||||
Architecture: iphoneos-arm
|
||||
Description: Show charging banners on your lock screen!
|
||||
Maintainer: burrit0z
|
||||
Author: burrit0z
|
||||
Section: Tweaks
|
||||
Depends: mobilesubstrate (>= 0.9.5000), preferenceloader, xyz.burritoz.thomz.multipla (>=1.2.0)
|
||||
Depends: mobilesubstrate (>= 0.9.5000), preferenceloader, xyz.burritoz.thomz.multipla (>=1.2.1)
|
||||
|
@ -101,6 +101,32 @@
|
||||
<string>hideDeviceLabel</string>
|
||||
<key>label</key>
|
||||
<string>Hide Device Name Label</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>cell</key>
|
||||
<string>PSGroupCell</string>
|
||||
<key>label</key>
|
||||
<string>Alignemnt Axis (Respring Required)</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>cell</key>
|
||||
<string>PSSegmentCell</string>
|
||||
<key>defaults</key>
|
||||
<string>com.burritoz.kaiprefs</string>
|
||||
<key>default</key>
|
||||
<string>0</string>
|
||||
<key>key</key>
|
||||
<string>kaiAlign</string>
|
||||
<key>validValues</key>
|
||||
<array>
|
||||
<string>0</string>
|
||||
<string>1</string>
|
||||
</array>
|
||||
<key>validTitles</key>
|
||||
<array>
|
||||
<string>Vertical</string>
|
||||
<string>Horizontal</string>
|
||||
</array>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>cell</key>
|
||||
|
Reference in New Issue
Block a user