This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add github issue template
- Loading branch information
Showing
9 changed files
with
167 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
--- | ||
name: Bug report | ||
about: Report a bug | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Environment | ||
- Platform+version: **iOS 14** <!--- Change to match your platform and version --> | ||
- Tweak version: **0.0.0** <!--- Change to the version of the tweak you're using --> | ||
- Do you have jailbreak detection bypass tweaks (FlyJB, HideJB, kernbypass, ...): **Yes/No** | ||
- If yes, are you sure that it does not block this tweak: **Yes/No** | ||
|
||
### Bug Report | ||
|
||
Note: Providing steps to reproduce, screenshot or screen recording are always helpful! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,14 +57,14 @@ Licensed under the [GPLv3 License](./LICENSE), Copyright © 2020-present Hao Ngu | |
<details> | ||
<summary>Click to expand!</summary> | ||
|
||
Add your device IP in `~/.bash_profile` or in project's `Makefile` for faster deployment | ||
Add your device IP in `~/.bash_profile` or `~/.zprofile` or in project's `Makefile` for faster deployment | ||
```base | ||
THEOS_DEVICE_IP = 192.168.1.21 | ||
THEOS_DEVICE_IP = 192.168.1.12 | ||
``` | ||
|
||
Add SSH key for target deploy device so you don't have to enter ssh root password every time | ||
```bash | ||
cat ~/.ssh/id_rsa.pub | ssh -p 22 [email protected].21 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys" | ||
cat ~/.ssh/id_rsa.pub | ssh -p 22 [email protected].12 "mkdir -p ~/.ssh && cat >> ~/.ssh/authorized_keys" | ||
``` | ||
|
||
Build the final package | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#import <Foundation/Foundation.h> | ||
|
||
typedef NS_ENUM(NSUInteger, CellType) { | ||
Default, | ||
StaticText, | ||
|