-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into feeds/navigation
* origin/main: (54 commits) patch `expo-notifications` to clear badge (#4475) Revert to old modal on android (#4458) Sort profile feedgens by likes (#4380) Revert "Fix undefined block (#4471)" (#4472) Fix undefined block (#4471) Open convo menu when tapping on chat with deleted account (#4470) stop using `addPushTokenListener` (#4467) add hitslop to repost button (#4469) Add a loading indicator to notifications when loading latest (#4468) Visually improve the empty state of feeds (#4466) Give a meaningful error in the composer when replying to a deleted post (#4464) Fix: show known feed error UI more reliably (#4463) Only validate persisted data for existing users (#4465) Check `canAskAgain` for notification permissions (#4460) Add support for new-tab clicks on feeds (#4462) Override legacy language codes for indonesian, hebrew, and yiddish (#4461) Ungate mobile web notification badge (#4459) Fix (#4430): Use separate hooks for shell mode animated styles (#4451) Throttle instead of debounce (#4456) debounce refetching listconvos (#4455) ...
- Loading branch information
Showing
89 changed files
with
17,867 additions
and
15,744 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 |
---|---|---|
|
@@ -34,6 +34,9 @@ jobs: | |
node-version-file: .nvmrc | ||
cache: yarn | ||
|
||
- name: 🪛 Setup jq | ||
uses: dcarbone/install-jq-action@v2 | ||
|
||
- name: 🔨 Setup EAS | ||
uses: expo/expo-github-action@v8 | ||
with: | ||
|
@@ -96,13 +99,17 @@ jobs: | |
name: build-${{ steps.timestamp.outputs.time }}.apk | ||
path: build.apk | ||
|
||
- name: 📚 Get version from package.json | ||
id: get-build-info | ||
run: bash scripts/setGitHubOutput.sh | ||
|
||
- name: 🔔 Notify Slack of Production Build | ||
if: ${{ inputs.profile == 'production' }} | ||
uses: slackapi/[email protected] | ||
with: | ||
payload: | | ||
{ | ||
"text": "Android build is ready for submission. This is a production build! Download the artifact here: ${{ steps.upload-artifact-production.outputs.artifact-url }}" | ||
"text": "Android production build for Google Play Store submission is ready!\n```Artifact: ${{ steps.upload-artifact-production.outputs.artifact-url }}\nVersion Number: ${{ steps.get-build-info.outputs.PACKAGE_VERSION }}\nBuild Number: ${{ steps.get-build-info.outputs.BSKY_ANDROID_VERSION_CODE }}```" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} | ||
|
@@ -140,7 +147,7 @@ jobs: | |
with: | ||
payload: | | ||
{ | ||
"text": "Android production APK build is ready for download. This is a production build, and you should add it to the GitHub release! Download the artifact here: ${{ steps.upload-artifact-production-apk.outputs.artifact-url }}" | ||
"text": "Android production build for GitHub/Obtanium is ready!\n```Artifact: ${{ steps.upload-artifact-production-apk.outputs.artifact-url }}\nVersion Number: ${{ steps.get-build-info.outputs.PACKAGE_VERSION }}\nBuild Number: ${{ steps.get-build-info.outputs.BSKY_ANDROID_VERSION_CODE }}```" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} | ||
|
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 |
---|---|---|
|
@@ -34,6 +34,9 @@ jobs: | |
node-version-file: .nvmrc | ||
cache: yarn | ||
|
||
- name: 🪛 Setup jq | ||
uses: dcarbone/install-jq-action@v2 | ||
|
||
- name: 🔨 Setup EAS | ||
uses: expo/expo-github-action@v8 | ||
with: | ||
|
@@ -81,6 +84,22 @@ jobs: | |
- name: 🚀 Deploy | ||
run: eas submit -p ios --non-interactive --path build.ipa | ||
|
||
- name: 📚 Get version from package.json | ||
id: get-build-info | ||
run: bash scripts/setGitHubOutput.sh | ||
|
||
- name: 🔔 Notify Slack of Production Build | ||
if: ${{ inputs.profile == 'production' }} | ||
uses: slackapi/[email protected] | ||
with: | ||
payload: | | ||
{ | ||
"text": "iOS production build for App Store submission is ready!\n```Artifact: Check TestFlight to know when it is available\nVersion Number: ${{ steps.get-build-info.outputs.PACKAGE_VERSION }}\nBuild Number: ${{ steps.get-build-info.outputs.BSKY_IOS_BUILD_NUMBER }}```" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} | ||
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK | ||
|
||
- name: ⬇️ Restore Cache | ||
id: get-base-commit | ||
uses: actions/cache@v4 | ||
|
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 was deleted.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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,5 @@ | ||
## expo-modules-core Patch | ||
|
||
This patch fixes crashes seen in some Android clients when using intents to open the app. See https://github.com/expo/expo/pull/29513. | ||
|
||
Do not remove this patch until that PR lands in Expo and is released. |
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,14 @@ | ||
diff --git a/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/NativeModulesProxy.java b/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/NativeModulesProxy.java | ||
index bb74e80..0aa0202 100644 | ||
--- a/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/NativeModulesProxy.java | ||
+++ b/node_modules/expo-modules-core/android/src/main/java/expo/modules/adapters/react/NativeModulesProxy.java | ||
@@ -90,8 +90,8 @@ public class NativeModulesProxy extends ReactContextBaseJavaModule { | ||
mModuleRegistry.ensureIsInitialized(); | ||
|
||
KotlinInteropModuleRegistry kotlinModuleRegistry = getKotlinInteropModuleRegistry(); | ||
- kotlinModuleRegistry.emitOnCreate(); | ||
kotlinModuleRegistry.installJSIInterop(); | ||
+ kotlinModuleRegistry.emitOnCreate(); | ||
|
||
Map<String, Object> constants = new HashMap<>(3); | ||
constants.put(MODULES_CONSTANTS_KEY, new HashMap<>()); |
Oops, something went wrong.