浏览代码

Initial commit

tags/v1.0.2
Viggo Lekdorf 6 年前
父节点
当前提交
7ce6203e9c
共有 5 个文件被更改,包括 44 次插入0 次删除
  1. +12
    -0
      Makefile
  2. +2
    -0
      README.md
  3. +8
    -0
      RoundedPageDots.plist
  4. +12
    -0
      Tweak.xm
  5. +10
    -0
      control

+ 12
- 0
Makefile 查看文件

ARCHS = armv7 arm64 arm64e
TARGET = iphone:clang:10.3:10.3

include $(THEOS)/makefiles/common.mk

TWEAK_NAME = RoundedPageDots
RoundedPageDots_FILES = Tweak.xm

include $(THEOS_MAKE_PATH)/tweak.mk

after-install::
install.exec "killall -9 SpringBoard"

+ 2
- 0
README.md 查看文件

# RoundedPageDots # RoundedPageDots
Simple extension for jailbroken iOS to make the page dots square with rounded corners. Simple extension for jailbroken iOS to make the page dots square with rounded corners.

For arm64e support, build with theos on macOS.

+ 8
- 0
RoundedPageDots.plist 查看文件

{
Filter = {
Bundles = (
"com.apple.springboard",
"com.apple.uikit"
);
};
}

+ 12
- 0
Tweak.xm 查看文件

#import <UIKit/UIKit.h>

@interface _UILegibilityView : UIView
-(UIImageView *)imageView;
@end

%hook UIPageControl
-(double)_modernCornerRadius {
return 1;
}

%end

+ 10
- 0
control 查看文件

Package: com.yaypixxo.roundedpagedots
Name: RoundedPageDots
Depends: mobilesubstrate
Version: 1.0.1
Architecture: iphoneos-arm
Description: square with rounded corners page dots lol
Depiction: http://yaypixxo.com/depictions?p=com.yaypixxo.roundedpagedots
Maintainer: YaYPIXXO <viggo@lekdorf.com>
Author: YaYPIXXO <viggo@lekdorf.com>
Section: Tweaks

正在加载...
取消
保存