expo-dev-launcher 0.11.1 → 0.11.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/android/build.gradle +1 -1
- package/android/src/debug/assets/expo_dev_launcher_android.bundle +25 -24
- package/android/src/debug/java/expo/modules/devlauncher/modules/{DevLauncherDevMenuExtensionModule.kt → DevLauncherDevMenuExtension.kt} +0 -0
- package/android/src/debug/java/expo/modules/devlauncher/modules/DevLauncherInternalModule.kt +1 -1
- package/android/src/expo-44/{java/expo → expo}/modules/devlauncher/DevLauncherPackageDelegate.kt +2 -2
- package/android/src/expo-45/{java/expo → expo}/modules/devlauncher/DevLauncherPackageDelegate.kt +3 -3
- package/android/src/main/java/expo/modules/devlauncher/DevLauncherPackage.kt +5 -6
- package/android/src/react-native-64/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +20 -2
- package/android/src/react-native-65/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +20 -2
- package/android/src/react-native-66/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +20 -2
- package/android/src/react-native-67/expo/modules/devlauncher/rncompatibility/DevLauncherReactNativeHostHandler.kt +20 -1
- package/android/src/release/java/expo/modules/devlauncher/DevLauncherPackageDelegate.kt +1 -1
- package/android/src/with-updates/{java/expo → expo}/modules/devlauncher/DevLauncherUpdatesInterfaceDelegate.kt +0 -0
- package/android/src/without-updates/{java/expo → expo}/modules/devlauncher/DevLauncherUpdatesInterfaceDelegate.kt +0 -0
- package/bundle/App.tsx +8 -9
- package/bundle/components/AppHeader.tsx +46 -46
- package/bundle/components/EASUpdatesRows.tsx +67 -26
- package/bundle/components/EmptyBranchesMessage.tsx +3 -3
- package/bundle/components/Toasts.tsx +3 -1
- package/bundle/functions/getInitialData.ts +23 -8
- package/bundle/hooks/useDebounce.tsx +1 -1
- package/bundle/hooks/useOnUpdatePress.tsx +54 -0
- package/bundle/queries/useBranchesForApp.tsx +35 -13
- package/bundle/queries/useUpdatesForBranch.tsx +17 -4
- package/bundle/screens/BranchesScreen.tsx +40 -13
- package/bundle/screens/ExtensionsScreen.tsx +140 -63
- package/bundle/screens/SettingsScreen.tsx +2 -0
- package/bundle/screens/UpdatesScreen.tsx +45 -53
- package/bundle/screens/UserProfileScreen.tsx +4 -4
- package/expo-module.config.json +2 -1
- package/ios/EXDevLauncherController.h +3 -1
- package/ios/EXDevLauncherController.m +28 -1
- package/ios/Errors/EXDevLauncherErrorManager.swift +7 -2
- package/ios/Errors/EXDevLauncherErrorViewController.swift +1 -1
- package/ios/ReactNative/EXDevLauncherRCTDevSettings.h +12 -0
- package/ios/ReactNative/EXDevLauncherRCTDevSettings.m +59 -0
- package/ios/Views/EXDevLauncherErrorView.storyboard +4 -4
- package/ios/main.jsbundle +25 -24
- package/package.json +3 -3
- package/yarn-error.log +31 -122
- package/android/src/debug/java/expo/modules/devlauncher/DevLauncherDevMenuExtensionPackage.kt +0 -24
- package/android/src/debug/java/expo/modules/devlauncher/modules/DevLauncherDevMenuExtensions.kt +0 -43
- package/android/src/release/java/expo/modules/devlauncher/DevLauncherDevMenuExtensionPackage.kt +0 -19
- package/ios/assets/__node_modules/css-select/node_modules/dom-serializer/foreignNames.json +0 -102
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,26 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 0.11.4 — 2022-05-05
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug fixes
|
|
16
|
+
|
|
17
|
+
- Fix crash on initial deep link ([#17268](https://github.com/expo/expo/pull/17268) by [@ajsmth](https://github.com/ajsmth))
|
|
18
|
+
- Fix remote debugging crashing the application on iOS. ([#17248](https://github.com/expo/expo/pull/17248) by [@lukmccall](https://github.com/lukmccall))
|
|
19
|
+
- Fix reload button on iOS native error screen in certain cases. ([#17272](https://github.com/expo/expo/pull/17272) by [@esamelson](https://github.com/esamelson))
|
|
20
|
+
- Fix infinite query refetching on extensions panel. ([#17314](https://github.com/expo/expo/pull/17314) by [@ajsmth](https://github.com/ajsmth))
|
|
21
|
+
- Fix airplane mode hanging on splash screen. ([#17325](https://github.com/expo/expo/pull/17325) by [@ajsmth](https://github.com/ajsmth))
|
|
22
|
+
|
|
23
|
+
## 0.11.3 — 2022-04-26
|
|
24
|
+
|
|
25
|
+
### 🐛 Bug fixes
|
|
26
|
+
|
|
27
|
+
- Fix the error screen sometimes not showing on iOS. ([#17216](https://github.com/expo/expo/pull/17216) by [@lukmccall](https://github.com/lukmccall))
|
|
28
|
+
|
|
29
|
+
## 0.11.2 — 2022-04-25
|
|
30
|
+
|
|
31
|
+
_This version does not introduce any user-facing changes._
|
|
32
|
+
|
|
13
33
|
## 0.11.1 — 2022-04-21
|
|
14
34
|
|
|
15
35
|
_This version does not introduce any user-facing changes._
|