Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Lessica committed Jul 5, 2022
0 parents commit 6bdaef2
Show file tree
Hide file tree
Showing 2,220 changed files with 822,087 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
screen/lib/opencv2.xcframework/ios-arm64_arm64e/opencv2.framework/Versions/A/opencv2 filter=lfs diff=lfs merge=lfs -text
screen/lib/libMagickCore.a filter=lfs diff=lfs merge=lfs -text
screen/lib/libMagickWand.a filter=lfs diff=lfs merge=lfs -text
screen/lib/libjpeg.a filter=lfs diff=lfs merge=lfs -text
screen/lib/libpng.a filter=lfs diff=lfs merge=lfs -text
screen/lib/libMagick++.a filter=lfs diff=lfs merge=lfs -text
screen/lib/opencv2.framework/Versions/A/opencv2 filter=lfs diff=lfs merge=lfs -text
samba/lib/libsmbclient.a filter=lfs diff=lfs merge=lfs -text
samba/lib/libtalloc.a filter=lfs diff=lfs merge=lfs -text
samba/lib/libtdb.a filter=lfs diff=lfs merge=lfs -text
samba/lib/libtevent.a filter=lfs diff=lfs merge=lfs -text
samba/lib/libwbclient.a filter=lfs diff=lfs merge=lfs -text
samba/layout/usr/local/xxtouch/bin/smbclient filter=lfs diff=lfs merge=lfs -text
dependencies/com.rpetrich.rocketbootstrap_1.0.10_beta1_iphoneos-arm.deb filter=lfs diff=lfs merge=lfs -text
dependencies/libarchive_3.3.2-1_iphoneos-arm.deb filter=lfs diff=lfs merge=lfs -text
dependencies/libzip_1.5.1-1_iphoneos-arm.deb filter=lfs diff=lfs merge=lfs -text
dependencies/unc0ver_Release_6.1.2.ipa filter=lfs diff=lfs merge=lfs -text
dependencies/unc0ver_Release_8.0.2.ipa filter=lfs diff=lfs merge=lfs -text
72 changes: 72 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
.theos/
packages/


# Created by https://www.toptal.com/developers/gitignore/api/macos,xcode
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,xcode

### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

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

## User settings
xcuserdata/

## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
*.xcscmblueprint
*.xccheckout

## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
build/
DerivedData/
*.moved-aside
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3

## Gcc Patch
/*.gcno

### Xcode Patch ###
*.xcodeproj/*
!*.xcodeproj/project.pbxproj
!*.xcodeproj/xcshareddata/
!*.xcworkspace/contents.xcworkspacedata
**/xcshareddata/WorkspaceSettings.xcsettings

# End of https://www.toptal.com/developers/gitignore/api/macos,xcode
n
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "plugins/EvilScheme"]
path = plugins/EvilScheme
url = [email protected]:XXTouchNG/EvilSchemeLua.git
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["stuartwang.luapanda"]
}
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lua",
"request": "launch",
"tag": "normal",
"name": "LuaPanda",
"description": "通用模式,通常调试项目请选择此模式 | launchVer:3.2.0",
"cwd": "${workspaceFolder}",
"luaFileExtension": "",
"VSCodeAsClient": true,
"connectionIP": "127.0.0.1",
"connectionPort": 8818,
"stopOnEntry": true,
"useCHook": true,
"autoPathMode": true
},
{
"type": "lua",
"request": "launch",
"tag": "independent_file",
"name": "LuaPanda-IndependentFile",
"description": "独立文件调试模式,使用前请参考文档",
"luaPath": "",
"packagePath": [],
"luaFileExtension": "",
"connectionPort": 8820,
"stopOnEntry": true,
"useCHook": true
}
]
}
22 changes: 22 additions & 0 deletions .vscode/patches/path-reader+1.1.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
diff --git a/node_modules/path-reader/lib/paths.js b/node_modules/path-reader/lib/paths.js
index 66906a9..c9e5d24 100644
--- a/node_modules/path-reader/lib/paths.js
+++ b/node_modules/path-reader/lib/paths.js
@@ -204,7 +204,7 @@ exports.files = function files(dir, type, callback, options) {
//var buffile = Buffer.concat([bufdir, Buffer.from(path.sep), list[i]]);

if(options.sync){
- var res = fs.statSync(file);
+ var res = fs.statSync(file, {throwIfNoEntry:false});
getStatHandler(file, list[i], statHanOptions)(null, res)
}else{
fs.stat(file, getStatHandler(file, list[i], statHanOptions));
@@ -227,7 +227,7 @@ exports.files = function files(dir, type, callback, options) {
}

if(options.sync){
- const stat = fs.statSync(dir);
+ const stat = fs.statSync(dir, {throwIfNoEntry:false});
return onStat(null, stat)
}else{
fs.stat(dir, onStat);
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"search.useIgnoreFiles": true
}
2 changes: 2 additions & 0 deletions 3rd/CashApp/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.theos/
packages/
12 changes: 12 additions & 0 deletions 3rd/CashApp/CashApp-Prefix.pch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
//
// Prefix header for all source files of the 'CashApp' target in the 'XXTouch' project
//

#ifdef __OBJC__
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <substrate.h>
#import <CaptainHook/CaptainHook.h>
#endif

#define TFLuaBridge CashApp_TFLuaBridge
Loading

0 comments on commit 6bdaef2

Please sign in to comment.