From 7e3853d4e72e7bbdae9e2139a54f143855520e50 Mon Sep 17 00:00:00 2001 From: Charlie Cheever Date: Tue, 8 Oct 2019 01:28:16 -0700 Subject: [PATCH 1/5] Add missing step to build instructions for AltServer in README You need to run `carthage update` to build AltServer. Adding that information to the README. --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4db9612f..f0155ca1 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,8 @@ AltStore and AltServer are both fairly straightforward to compile and run if you 3. Open `AltStore.xcworkspace` and select the AltStore project in the project navigator. On the `Signing & Capabilities` tab, change the team from `Yvette Testut` to your own account. 4. **(AltStore only)** Change the value for `ALTDeviceID` in the Info.plist to your device's UDID. Normally, AltServer embeds the device's UDID in AltStore's Info.plist during installation. When running through Xcode you'll need to set the value yourself or else AltStore won't resign (or even install) apps for the proper device. 5. **(AltStore only)** Change the value for `ALTServerID` in the Info.plist to your AltServer's serverID. This is embedded by AltServer during installation to help AltStore distinguish between multiple AltServers on the same network, and you can find this by using a Bonjour browsing application and noting the serverID advertised by AltServer. This isn't strictly necessary, because if AltStore can't find the AltServer with the embedded serverID it still falls back to trying another AltServer. However, this will help in cases where there are multiple AltServers running (plus the error messages are more helpful). -6. Build + run app! 🎉 +6. **(AltServer only)** Install Carthage (if you use Homebrew, you can do this with `brew install carthage`). Then run `carthage update` in the root directory of the repository. +7. Build + run app! 🎉 ## Licensing From 4c57ab590d45be8e4ac5b3cffe24ec018a27fa8b Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Sat, 12 Oct 2019 14:50:43 +0900 Subject: [PATCH 2/5] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f0155ca1..66af470b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Why iOS 12.2+ and macOS 10.14.4+? Doing so allows me to distribute all AltStore ## Project Overview ### AltStore -AltStore is a just regular, sandboxed iOS application. The AltStore app target contains the vast majority of AltStore's functionality, including all the logic for downloading and updating apps through AltStore. AltStore makes heavy use of standard iOS frameworks and technologies most iOS developers are familiar with, such as: +AltStore is just a regular, sandboxed iOS application. The AltStore app target contains the vast majority of AltStore's functionality, including all the logic for downloading and updating apps through AltStore. AltStore makes heavy use of standard iOS frameworks and technologies most iOS developers are familiar with, such as: * Core Data * Storyboards/Nibs * Auto Layout From 241f2d5998193f98aa0bef865ecebe0b6ec6a9de Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Fri, 18 Oct 2019 02:00:32 -0700 Subject: [PATCH 3/5] Create FUNDING.yml --- .github/FUNDING.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 00000000..3650ec29 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: rileytestut +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] From f9edf97ffaecbae63a010970982257e63245bd05 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Wed, 8 Jan 2020 13:05:22 -0800 Subject: [PATCH 4/5] Adds GitHub Action to post to Discord --- .github/workflows/main.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..92587e47 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,15 @@ +name: Post Commit to Discord + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Discord notification + env: + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} + DISCORD_USERNAME: AltBot + uses: Ilshidur/action-discord@c7b60ec From a4fab0367efaedee3769b839a279607ba337b5f9 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Mon, 13 Jan 2020 10:14:05 -0800 Subject: [PATCH 5/5] Update main.yml --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 92587e47..675e77fc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,10 @@ name: Post Commit to Discord -on: [push] +on: + push: + branches: + - master + - develop jobs: build: