expo-dev-menu 5.0.11 → 5.0.12

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 CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 5.0.12 — 2024-05-04
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fix reloading app through "r" hotkey on iOS. ([#28617](https://github.com/expo/expo/pull/28617) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+
13
19
  ## 5.0.11 — 2024-05-03
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '5.0.11'
4
+ version = '5.0.12'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -20,7 +20,7 @@ android {
20
20
  namespace "expo.modules.devmenu"
21
21
  defaultConfig {
22
22
  versionCode 10
23
- versionName '5.0.11'
23
+ versionName '5.0.12'
24
24
  }
25
25
 
26
26
  buildTypes {
@@ -78,7 +78,6 @@ open class DevMenuExtensions: NSObject, DevMenuExtensionProtocol {
78
78
  reload.label = { "Reload" }
79
79
  reload.glyphName = { "reload" }
80
80
  reload.importance = DevMenuScreenItem.ImportanceHighest
81
- reload.registerKeyCommand(input: "r", modifiers: []) // "r" without modifiers
82
81
  return reload
83
82
  }
84
83
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "5.0.11",
3
+ "version": "5.0.12",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -70,5 +70,5 @@
70
70
  "peerDependencies": {
71
71
  "expo": "*"
72
72
  },
73
- "gitHead": "be2f6412d09e8afaa06adeb7129d93a0256aa2c7"
73
+ "gitHead": "a8060e820f0af06873d2278134d4d84081f8dcd2"
74
74
  }