1
0
mirror of https://github.com/Burrit0z/kai synced 2025-07-01 03:06:47 +00:00

horizontal, brrrr

This commit is contained in:
Burrit0z
2020-06-02 17:20:10 -04:00
parent b62508f160
commit 4b5495d2b0
4 changed files with 32 additions and 4 deletions

View File

@ -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
View File

@ -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;

View File

@ -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)

View File

@ -102,6 +102,32 @@
<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>
<string>PSGroupCell</string>