Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
2e7e420
Change default UPLOAD_IPA value to 'false'
StephenDev0 Feb 22, 2026
a531819
Part 1 of the great debloat
StephenDev0 Feb 22, 2026
63a1398
Merge branch 'semi-rewrite' of https://github.com/StephenDev0/StikDeb…
StephenDev0 Feb 22, 2026
03b1cad
Merge remote-tracking branch 'origin/main' into semi-rewrite
StephenDev0 Feb 22, 2026
9f0a0f2
Remove Mini Tools, adopt native alerts in StikJITApp, and update Home…
StephenDev0 Feb 22, 2026
cce8f8d
Refactor views to use native SwiftUI alerts instead of CustomErrorView
StephenDev0 Feb 22, 2026
868dcbf
Update ProfileView to use minimal List UI style with native alerts
StephenDev0 Feb 22, 2026
830412e
Fix up homeview
StephenDev0 Feb 22, 2026
4ad1e53
Squash: Redesign HomeView, remove Feature Flags, enable all tabs, ref…
StephenDev0 Feb 23, 2026
6863ede
Clean up: Remove In-App Purchases, update checker, and unused IPA ins…
StephenDev0 Feb 23, 2026
096e2e1
delete more bloat
StephenDev0 Feb 23, 2026
0e1ec99
fix build issue
StephenDev0 Feb 23, 2026
0e8b981
Remove widget to save on App IDs
StephenDev0 Feb 23, 2026
09615b4
Attempt heartbeat restart when Enable JIT button is pressed
StephenDev0 Feb 23, 2026
ed71451
Get rid of PIP
StephenDev0 Feb 23, 2026
b12c1f1
Update Tab Naming
StephenDev0 Feb 23, 2026
23c12f3
remove more bloat
StephenDev0 Feb 23, 2026
f64f193
final changes for today
StephenDev0 Feb 23, 2026
98ce58f
Remove unused packages
StephenDev0 Feb 23, 2026
381ed32
UX Improvements
StephenDev0 Feb 23, 2026
8de6af9
revert bundle id
StephenDev0 Feb 23, 2026
13dfa56
Update README.md
StephenDev0 Feb 23, 2026
881046b
remove old idevice
StephenDev0 Feb 23, 2026
555d7d4
add updated idevice
StephenDev0 Feb 23, 2026
8176387
Merge branch 'semi-rewrite' of https://github.com/StephenDev0/StikDeb…
StephenDev0 Feb 23, 2026
b810072
Fix ddi false positive errors and add templates for GitHub stuff
StephenDev0 Feb 23, 2026
6f572c1
Remove more unused stuff.
StephenDev0 Feb 23, 2026
3361e44
Fix links and update README content
StephenDev0 Feb 23, 2026
95faa46
Update compatibility table in README.md
StephenDev0 Feb 23, 2026
d7e7f01
Improve performance of console logs
StephenDev0 Feb 23, 2026
067b2c9
Merge branch 'semi-rewrite' of https://github.com/StephenDev0/StikDeb…
StephenDev0 Feb 23, 2026
5f2b33a
Remove old code
StephenDev0 Feb 23, 2026
3e720b5
Change default UPLOAD_IPA value to 'true'
StephenDev0 Feb 23, 2026
41ace76
remove the welcome sheet
StephenDev0 Feb 23, 2026
3065895
Merge branch 'semi-rewrite' of https://github.com/StephenDev0/StikDeb…
StephenDev0 Feb 23, 2026
60df16f
import support for .mobiledevicepair
StephenDev0 Feb 23, 2026
2d82224
Add back LC JIT stuff
StephenDev0 Feb 25, 2026
4299ab5
Fix heartbeat issues with LC JIT
StephenDev0 Feb 25, 2026
798b036
update the build yml for nightly stuff
StephenDev0 Feb 25, 2026
ac3c49a
Update README.md
StephenDev0 Feb 25, 2026
4f0b660
Update README.md
StephenDev0 Feb 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 66 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Bug Report
description: Report a bug or unexpected behavior
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug. Please fill out the information below to help us fix it.
- type: textarea
id: description
attributes:
label: Description
description: A clear description of the bug.
placeholder: Describe what happened...
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: How can we reproduce this?
placeholder: |
1. Go to ...
2. Tap on ...
3. See error
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What did you expect to happen?
validations:
required: true
- type: input
id: ios-version
attributes:
label: iOS Version
placeholder: e.g. 18.3.1
validations:
required: true
- type: input
id: device
attributes:
label: Device
placeholder: e.g. iPhone 15 Pro
validations:
required: true
- type: input
id: app-version
attributes:
label: StikDebug Version
placeholder: e.g. 1.0.0
validations:
required: true
- type: textarea
id: logs
attributes:
label: Logs
description: Any relevant logs from the app's log viewer.
render: shell
- type: textarea
id: screenshots
attributes:
label: Screenshots
description: If applicable, add screenshots to help explain the issue.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Feature Request
description: Suggest a new feature or improvement
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Have an idea for StikDebug? Let us know!
- type: textarea
id: description
attributes:
label: Description
description: A clear description of the feature you'd like.
validations:
required: true
- type: textarea
id: use-case
attributes:
label: Use Case
description: Why would this be useful? What problem does it solve?
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: Have you considered any alternative solutions or workarounds?
21 changes: 21 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Summary

<!-- Brief description of what this PR does -->

## Changes

-

## Related Issues

<!-- Link any related issues: Fixes #123, Closes #456 -->

## Testing

- [ ] Tested on device
- [ ] Tested with fresh pairing file
- [ ] No regressions in existing functionality

## Screenshots

<!-- If applicable, add screenshots showing the changes -->
12 changes: 9 additions & 3 deletions .github/workflows/build_ipa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,18 @@ jobs:
path: StikDebug.ipa
retention-days: 90

- name: Create or Update GitHub Release (GitHub-Alpha)
- name: Read app version
id: version
run: |
VERSION=$(sed -n 's/.*MARKETING_VERSION = \(.*\);/\1/p' StikDebug.xcodeproj/project.pbxproj | head -1 | xargs)
echo "app_version=$VERSION" >> "$GITHUB_OUTPUT"

- name: Create or Update GitHub Release (Nightly)
if: env.UPLOAD_IPA == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: softprops/action-gh-release@v2
with:
tag_name: GitHub-Alpha
name: GitHub-Alpha
tag_name: Nightly
name: "Nightly - v${{ steps.version.outputs.app_version }}"
prerelease: true
generate_release_notes: false
target_commitish: ${{ github.sha }}
Expand Down
11 changes: 0 additions & 11 deletions DebugWidget/Assets.xcassets/AccentColor.colorset/Contents.json

This file was deleted.

35 changes: 0 additions & 35 deletions DebugWidget/Assets.xcassets/AppIcon.appiconset/Contents.json

This file was deleted.

6 changes: 0 additions & 6 deletions DebugWidget/Assets.xcassets/Contents.json

This file was deleted.

This file was deleted.

Loading