expo-dev-launcher 6.0.8 → 6.0.10

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,14 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 6.0.10 — 2025-09-08
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 6.0.9 — 2025-09-03
18
+
19
+ _This version does not introduce any user-facing changes._
20
+
13
21
  ## 6.0.8 — 2025-08-31
14
22
 
15
23
  _This version does not introduce any user-facing changes._
@@ -20,13 +20,13 @@ expoModule {
20
20
  }
21
21
 
22
22
  group = "host.exp.exponent"
23
- version = "6.0.8"
23
+ version = "6.0.10"
24
24
 
25
25
  android {
26
26
  namespace "expo.modules.devlauncher"
27
27
  defaultConfig {
28
28
  versionCode 9
29
- versionName "6.0.8"
29
+ versionName "6.0.10"
30
30
  }
31
31
 
32
32
  buildTypes {
@@ -14,7 +14,7 @@ struct AccountSheet: View {
14
14
  Spacer()
15
15
  Image("expo-go-logo", bundle: getDevLauncherBundle())
16
16
  .resizable()
17
- .aspectRatio(contentMode: .fit)
17
+ .scaledToFit()
18
18
  .frame(width: 180)
19
19
  Spacer()
20
20
  }
@@ -208,7 +208,7 @@ struct AccountSheet: View {
208
208
  Avatar(url: url) { image in
209
209
  image
210
210
  .resizable()
211
- .aspectRatio(contentMode: .fill)
211
+ .scaledToFill()
212
212
  } placeholder: {
213
213
  Circle()
214
214
  #if !os(tvOS)
@@ -32,7 +32,7 @@ struct DevLauncherNavigationHeader: View {
32
32
  let appIcon = loadAppIcon(from: path) {
33
33
  Image(uiImage: appIcon)
34
34
  .resizable()
35
- .aspectRatio(contentMode: .fit)
35
+ .scaledToFit()
36
36
  .frame(width: 32, height: 32)
37
37
  .clipShape(RoundedRectangle(cornerRadius: 8))
38
38
  }
@@ -96,7 +96,7 @@ struct DevLauncherNavigationHeader: View {
96
96
  Avatar(url: url) { image in
97
97
  image
98
98
  .resizable()
99
- .aspectRatio(contentMode: .fill)
99
+ .scaledToFill()
100
100
  } placeholder: {
101
101
  Circle()
102
102
  .fill(Color.expoSystemGray5)
@@ -149,7 +149,7 @@ struct SettingsTabView: View {
149
149
  Spacer()
150
150
  Image(systemName: "clipboard")
151
151
  .resizable()
152
- .aspectRatio(contentMode: .fit)
152
+ .scaledToFit()
153
153
  .frame(width: 16, height: 16)
154
154
  .foregroundColor(.blue)
155
155
  #endif
@@ -7,7 +7,7 @@ struct NotSignedInView: View {
7
7
  VStack(spacing: 16) {
8
8
  Image(systemName: "square.and.arrow.down")
9
9
  .resizable()
10
- .aspectRatio(contentMode: .fit)
10
+ .scaledToFit()
11
11
  .frame(width: 44, height: 44)
12
12
  .rotationEffect(.degrees(-90))
13
13
  .foregroundColor(.blue)
@@ -7,7 +7,7 @@ struct NotUsingUpdatesView: View {
7
7
  VStack(spacing: 16) {
8
8
  Image(systemName: "exclamationmark.triangle")
9
9
  .resizable()
10
- .aspectRatio(contentMode: .fit)
10
+ .scaledToFit()
11
11
  .frame(width: 44, height: 44)
12
12
  .foregroundColor(.orange)
13
13
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-dev-launcher",
3
3
  "title": "Expo Development Launcher",
4
- "version": "6.0.8",
4
+ "version": "6.0.10",
5
5
  "description": "Pre-release version of the Expo development launcher package for testing.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -15,11 +15,11 @@
15
15
  "license": "MIT",
16
16
  "homepage": "https://docs.expo.dev",
17
17
  "dependencies": {
18
- "expo-dev-menu": "7.0.7",
19
- "expo-manifests": "~1.0.6"
18
+ "expo-dev-menu": "7.0.9",
19
+ "expo-manifests": "~1.0.7"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "expo": "*"
23
23
  },
24
- "gitHead": "1dafdaa317c182191909a94a355c8b08a2654783"
24
+ "gitHead": "d087a2182086089f23bcee65e27434f21db50128"
25
25
  }