mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-07-18 18:27:21 +02:00
modded scinsta with additional features and fixes for recent instagram version
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"editor.tabSize": 4,
|
||||
"editor.insertSpaces": true,
|
||||
"editor.trimAutoWhitespace": true,
|
||||
"editor.formatOnSave": false,
|
||||
"files.associations": {
|
||||
"*.x": "logos",
|
||||
"*.xi": "logos",
|
||||
"*.xm": "logos",
|
||||
"*.xmi": "logos",
|
||||
"*.m": "objective-c",
|
||||
"*.h": "objective-c"
|
||||
},
|
||||
|
||||
"search.exclude": {
|
||||
"modules/": true,
|
||||
"dumps/": true
|
||||
}
|
||||
}
|
||||
Vendored
+27
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"SCIUtils: Bool Pref": {
|
||||
"prefix": "scibool",
|
||||
"body": [
|
||||
"if ([SCIUtils getBoolPref:@\"${1:key}\"]) $0"
|
||||
]
|
||||
},
|
||||
"SCIUtils: String Pref": {
|
||||
"prefix": "scistring",
|
||||
"body": [
|
||||
"if ([[SCIUtils getStringPref:@\"${1:key}\"] isEqualToString:@\"${2:string}\"]) $0"
|
||||
]
|
||||
},
|
||||
|
||||
"SCIUtils: Log": {
|
||||
"prefix": "scilog",
|
||||
"body": [
|
||||
"SCILog($0);"
|
||||
]
|
||||
},
|
||||
"SCIUtils: Log Id": {
|
||||
"prefix": "scilogid",
|
||||
"body": [
|
||||
"SCILogId(@\"${1:prefix}\", $0);"
|
||||
]
|
||||
}
|
||||
}
|
||||
Vendored
+59
@@ -0,0 +1,59 @@
|
||||
{
|
||||
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||
// for the documentation about the tasks.json format
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Compile tweak and deploy to LiveContainer",
|
||||
"type": "shell",
|
||||
"command": "./build-dev.sh",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "always",
|
||||
"panel": "dedicated",
|
||||
"clear": true
|
||||
},
|
||||
"icon": {
|
||||
"color": "terminal.ansiCyan",
|
||||
"id": "run-all"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Build SCInsta and deploy with IPA",
|
||||
"type": "shell",
|
||||
"command": "./build-dev.sh true",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "always",
|
||||
"panel": "dedicated",
|
||||
"clear": true
|
||||
},
|
||||
"icon": {
|
||||
"id": "package"
|
||||
}
|
||||
},
|
||||
{
|
||||
"label": "Launch pymobiledevice3 device tunnel (for quick dev builds)",
|
||||
"type": "shell",
|
||||
"command": "sudo pymobiledevice3 remote tunneld",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "silent",
|
||||
"panel": "dedicated",
|
||||
"clear": true
|
||||
},
|
||||
"icon": {
|
||||
"color": "terminal.ansiYellow",
|
||||
"id": "debug-connected"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user