├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml └── notifake.iml ├── Assets ├── banner.png ├── img1.png ├── img2.png ├── img3.png └── notifake.svg ├── LICENSE ├── Makefile ├── Notifake.h ├── Notifake.plist ├── Notifake.x ├── README.md ├── SupportLibraries ├── libFLA │ ├── FLAnimatedImage.h │ ├── FLAnimatedImage.m │ ├── FLAnimatedImageView.h │ └── FLAnimatedImageView.m └── lottie │ ├── CALayer+Compat.h │ ├── CALayer+Compat.m │ ├── CGGeometry+LOTAdditions.h │ ├── CGGeometry+LOTAdditions.m │ ├── LOTAnimatedControl.h │ ├── LOTAnimatedControl.m │ ├── LOTAnimatedSwitch.h │ ├── LOTAnimatedSwitch.m │ ├── LOTAnimationCache.h │ ├── LOTAnimationCache.m │ ├── LOTAnimationTransitionController.h │ ├── LOTAnimationTransitionController.m │ ├── LOTAnimationView.h │ ├── LOTAnimationView.m │ ├── LOTAnimationView_Compat.h │ ├── LOTAnimationView_Internal.h │ ├── LOTAnimatorNode.h │ ├── LOTAnimatorNode.m │ ├── LOTArrayInterpolator.h │ ├── LOTArrayInterpolator.m │ ├── LOTAsset.h │ ├── LOTAsset.m │ ├── LOTAssetGroup.h │ ├── LOTAssetGroup.m │ ├── LOTBezierData.h │ ├── LOTBezierData.m │ ├── LOTBezierPath.h │ ├── LOTBezierPath.m │ ├── LOTBlockCallback.h │ ├── LOTBlockCallback.m │ ├── LOTCacheProvider.h │ ├── LOTCacheProvider.m │ ├── LOTCircleAnimator.h │ ├── LOTCircleAnimator.m │ ├── LOTColorInterpolator.h │ ├── LOTColorInterpolator.m │ ├── LOTComposition.h │ ├── LOTComposition.m │ ├── LOTCompositionContainer.h │ ├── LOTCompositionContainer.m │ ├── LOTFillRenderer.h │ ├── LOTFillRenderer.m │ ├── LOTGradientFillRender.h │ ├── LOTGradientFillRender.m │ ├── LOTHelpers.h │ ├── LOTInterpolatorCallback.h │ ├── LOTInterpolatorCallback.m │ ├── LOTKeyframe.h │ ├── LOTKeyframe.m │ ├── LOTKeypath.h │ ├── LOTKeypath.m │ ├── LOTLayer.h │ ├── LOTLayer.m │ ├── LOTLayerContainer.h │ ├── LOTLayerContainer.m │ ├── LOTLayerGroup.h │ ├── LOTLayerGroup.m │ ├── LOTMask.h │ ├── LOTMask.m │ ├── LOTMaskContainer.h │ ├── LOTMaskContainer.m │ ├── LOTModels.h │ ├── LOTNumberInterpolator.h │ ├── LOTNumberInterpolator.m │ ├── LOTPathAnimator.h │ ├── LOTPathAnimator.m │ ├── LOTPathInterpolator.h │ ├── LOTPathInterpolator.m │ ├── LOTPlatformCompat.h │ ├── LOTPointInterpolator.h │ ├── LOTPointInterpolator.m │ ├── LOTPolygonAnimator.h │ ├── LOTPolygonAnimator.m │ ├── LOTPolystarAnimator.h │ ├── LOTPolystarAnimator.m │ ├── LOTRadialGradientLayer.h │ ├── LOTRadialGradientLayer.m │ ├── LOTRenderGroup.h │ ├── LOTRenderGroup.m │ ├── LOTRenderNode.h │ ├── LOTRenderNode.m │ ├── LOTRepeaterRenderer.h │ ├── LOTRepeaterRenderer.m │ ├── LOTRoundedRectAnimator.h │ ├── LOTRoundedRectAnimator.m │ ├── LOTShapeCircle.h │ ├── LOTShapeCircle.m │ ├── LOTShapeFill.h │ ├── LOTShapeFill.m │ ├── LOTShapeGradientFill.h │ ├── LOTShapeGradientFill.m │ ├── LOTShapeGroup.h │ ├── LOTShapeGroup.m │ ├── LOTShapePath.h │ ├── LOTShapePath.m │ ├── LOTShapeRectangle.h │ ├── LOTShapeRectangle.m │ ├── LOTShapeRepeater.h │ ├── LOTShapeRepeater.m │ ├── LOTShapeStar.h │ ├── LOTShapeStar.m │ ├── LOTShapeStroke.h │ ├── LOTShapeStroke.m │ ├── LOTShapeTransform.h │ ├── LOTShapeTransform.m │ ├── LOTShapeTrimPath.h │ ├── LOTShapeTrimPath.m │ ├── LOTSizeInterpolator.h │ ├── LOTSizeInterpolator.m │ ├── LOTStrokeRenderer.h │ ├── LOTStrokeRenderer.m │ ├── LOTTransformInterpolator.h │ ├── LOTTransformInterpolator.m │ ├── LOTTrimPathNode.h │ ├── LOTTrimPathNode.m │ ├── LOTValueCallback.h │ ├── LOTValueCallback.m │ ├── LOTValueDelegate.h │ ├── LOTValueInterpolator.h │ ├── LOTValueInterpolator.m │ ├── Lottie.h │ ├── NSValue+Compat.h │ ├── NSValue+Compat.m │ ├── UIBezierPath.h │ ├── UIBezierPath.m │ ├── UIColor+Expanded.h │ ├── UIColor+Expanded.m │ ├── UIColor.h │ └── UIColor.m ├── control ├── libactivator-headers ├── LAActivator.h ├── LAActivatorVersion.h ├── LAEvent.h ├── LAEventDataSource.h ├── LAListener.h ├── LASettingsViewController.h ├── UIImageView+Activator.h └── libactivator.h └── notifakepreferences ├── AWSourceLinkCell.h ├── AWSourceLinkCell.m ├── AltList.h ├── JBBulletinManager.h ├── Makefile ├── NTFRootListController.h ├── NTFRootListController.m ├── Resources ├── Info.plist ├── Root.plist ├── icon.png ├── icon@2x.png ├── notifakeGithub.json ├── notifakeTelegram.json └── notifakeicon.json ├── imports.h └── layout └── Library └── PreferenceLoader └── Preferences └── NotifakePreferences.plist /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | Assets 4 | .DS_Store 5 | .idea/ -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/notifake.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/.idea/notifake.iml -------------------------------------------------------------------------------- /Assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Assets/banner.png -------------------------------------------------------------------------------- /Assets/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Assets/img1.png -------------------------------------------------------------------------------- /Assets/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Assets/img2.png -------------------------------------------------------------------------------- /Assets/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Assets/img3.png -------------------------------------------------------------------------------- /Assets/notifake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Assets/notifake.svg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Makefile -------------------------------------------------------------------------------- /Notifake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Notifake.h -------------------------------------------------------------------------------- /Notifake.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Notifake.plist -------------------------------------------------------------------------------- /Notifake.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/Notifake.x -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/README.md -------------------------------------------------------------------------------- /SupportLibraries/libFLA/FLAnimatedImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/libFLA/FLAnimatedImage.h -------------------------------------------------------------------------------- /SupportLibraries/libFLA/FLAnimatedImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/libFLA/FLAnimatedImage.m -------------------------------------------------------------------------------- /SupportLibraries/libFLA/FLAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/libFLA/FLAnimatedImageView.h -------------------------------------------------------------------------------- /SupportLibraries/libFLA/FLAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/libFLA/FLAnimatedImageView.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/CALayer+Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/CALayer+Compat.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/CALayer+Compat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/CALayer+Compat.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/CGGeometry+LOTAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/CGGeometry+LOTAdditions.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/CGGeometry+LOTAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/CGGeometry+LOTAdditions.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimatedControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimatedControl.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimatedControl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimatedControl.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimatedSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimatedSwitch.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimatedSwitch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimatedSwitch.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationCache.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationCache.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationTransitionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationTransitionController.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationTransitionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationTransitionController.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationView.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationView.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationView_Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationView_Compat.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimationView_Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimationView_Internal.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimatorNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimatorNode.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAnimatorNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAnimatorNode.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTArrayInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTArrayInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTArrayInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTArrayInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAsset.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAsset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAsset.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAssetGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAssetGroup.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTAssetGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTAssetGroup.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTBezierData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTBezierData.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTBezierData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTBezierData.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTBezierPath.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTBezierPath.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTBlockCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTBlockCallback.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTBlockCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTBlockCallback.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTCacheProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTCacheProvider.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTCacheProvider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTCacheProvider.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTCircleAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTCircleAnimator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTCircleAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTCircleAnimator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTColorInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTColorInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTColorInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTColorInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTComposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTComposition.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTComposition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTComposition.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTCompositionContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTCompositionContainer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTCompositionContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTCompositionContainer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTFillRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTFillRenderer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTFillRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTFillRenderer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTGradientFillRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTGradientFillRender.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTGradientFillRender.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTGradientFillRender.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTHelpers.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTInterpolatorCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTInterpolatorCallback.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTInterpolatorCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTInterpolatorCallback.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTKeyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTKeyframe.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTKeyframe.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTKeyframe.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTKeypath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTKeypath.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTKeypath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTKeypath.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTLayer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTLayer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTLayerContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTLayerContainer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTLayerContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTLayerContainer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTLayerGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTLayerGroup.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTLayerGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTLayerGroup.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTMask.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTMask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTMask.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTMaskContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTMaskContainer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTMaskContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTMaskContainer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTModels.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTNumberInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTNumberInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTNumberInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTNumberInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPathAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPathAnimator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPathAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPathAnimator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPathInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPathInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPathInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPathInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPlatformCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPlatformCompat.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPointInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPointInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPointInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPointInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPolygonAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPolygonAnimator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPolygonAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPolygonAnimator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPolystarAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPolystarAnimator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTPolystarAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTPolystarAnimator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRadialGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRadialGradientLayer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRadialGradientLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRadialGradientLayer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRenderGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRenderGroup.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRenderGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRenderGroup.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRenderNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRenderNode.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRenderNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRenderNode.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRepeaterRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRepeaterRenderer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRepeaterRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRepeaterRenderer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRoundedRectAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRoundedRectAnimator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTRoundedRectAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTRoundedRectAnimator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeCircle.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeCircle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeCircle.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeFill.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeFill.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeGradientFill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeGradientFill.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeGradientFill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeGradientFill.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeGroup.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeGroup.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapePath.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapePath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapePath.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeRectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeRectangle.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeRectangle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeRectangle.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeRepeater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeRepeater.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeRepeater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeRepeater.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeStar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeStar.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeStar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeStar.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeStroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeStroke.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeStroke.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeStroke.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeTransform.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeTransform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeTransform.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeTrimPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeTrimPath.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTShapeTrimPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTShapeTrimPath.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTSizeInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTSizeInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTSizeInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTSizeInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTStrokeRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTStrokeRenderer.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTStrokeRenderer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTStrokeRenderer.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTTransformInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTTransformInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTTransformInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTTransformInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTTrimPathNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTTrimPathNode.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTTrimPathNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTTrimPathNode.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTValueCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTValueCallback.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTValueCallback.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTValueCallback.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTValueDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTValueDelegate.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTValueInterpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTValueInterpolator.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/LOTValueInterpolator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/LOTValueInterpolator.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/Lottie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/Lottie.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/NSValue+Compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/NSValue+Compat.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/NSValue+Compat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/NSValue+Compat.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/UIBezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/UIBezierPath.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/UIBezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/UIBezierPath.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/UIColor+Expanded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/UIColor+Expanded.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/UIColor+Expanded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/UIColor+Expanded.m -------------------------------------------------------------------------------- /SupportLibraries/lottie/UIColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/UIColor.h -------------------------------------------------------------------------------- /SupportLibraries/lottie/UIColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/SupportLibraries/lottie/UIColor.m -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/control -------------------------------------------------------------------------------- /libactivator-headers/LAActivator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/LAActivator.h -------------------------------------------------------------------------------- /libactivator-headers/LAActivatorVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/LAActivatorVersion.h -------------------------------------------------------------------------------- /libactivator-headers/LAEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/LAEvent.h -------------------------------------------------------------------------------- /libactivator-headers/LAEventDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/LAEventDataSource.h -------------------------------------------------------------------------------- /libactivator-headers/LAListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/LAListener.h -------------------------------------------------------------------------------- /libactivator-headers/LASettingsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/LASettingsViewController.h -------------------------------------------------------------------------------- /libactivator-headers/UIImageView+Activator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/UIImageView+Activator.h -------------------------------------------------------------------------------- /libactivator-headers/libactivator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/libactivator-headers/libactivator.h -------------------------------------------------------------------------------- /notifakepreferences/AWSourceLinkCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/AWSourceLinkCell.h -------------------------------------------------------------------------------- /notifakepreferences/AWSourceLinkCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/AWSourceLinkCell.m -------------------------------------------------------------------------------- /notifakepreferences/AltList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/AltList.h -------------------------------------------------------------------------------- /notifakepreferences/JBBulletinManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/JBBulletinManager.h -------------------------------------------------------------------------------- /notifakepreferences/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Makefile -------------------------------------------------------------------------------- /notifakepreferences/NTFRootListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/NTFRootListController.h -------------------------------------------------------------------------------- /notifakepreferences/NTFRootListController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/NTFRootListController.m -------------------------------------------------------------------------------- /notifakepreferences/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Resources/Info.plist -------------------------------------------------------------------------------- /notifakepreferences/Resources/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Resources/Root.plist -------------------------------------------------------------------------------- /notifakepreferences/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Resources/icon.png -------------------------------------------------------------------------------- /notifakepreferences/Resources/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Resources/icon@2x.png -------------------------------------------------------------------------------- /notifakepreferences/Resources/notifakeGithub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Resources/notifakeGithub.json -------------------------------------------------------------------------------- /notifakepreferences/Resources/notifakeTelegram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Resources/notifakeTelegram.json -------------------------------------------------------------------------------- /notifakepreferences/Resources/notifakeicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/Resources/notifakeicon.json -------------------------------------------------------------------------------- /notifakepreferences/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/imports.h -------------------------------------------------------------------------------- /notifakepreferences/layout/Library/PreferenceLoader/Preferences/NotifakePreferences.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MatoiDev/Notifake/HEAD/notifakepreferences/layout/Library/PreferenceLoader/Preferences/NotifakePreferences.plist --------------------------------------------------------------------------------