Skip to content

Commit 7d5594f

Browse files
Merge branch 'v2' into mrichardson/http_method
2 parents e7e958a + 5204145 commit 7d5594f

File tree

9 files changed

+280
-256
lines changed

9 files changed

+280
-256
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
geolocation: patch
3+
geolocation-js: patch
4+
---
5+
6+
On Android, use the `timeout` value for `setMinUpdateIntervalMillis`, `setMaxUpdateDelayMillis` and `setIntervalMillis` instead of just `minUpdateInterval`.

examples/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@
4040
"@unocss/extractor-svelte": "^66.3.3",
4141
"svelte": "^5.20.4",
4242
"unocss": "^66.3.3",
43-
"vite": "^7.0.4"
43+
"vite": "^7.0.7"
4444
}
4545
}

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,21 @@
1111
"example:api:dev": "pnpm run --filter \"api\" tauri dev"
1212
},
1313
"devDependencies": {
14-
"@eslint/js": "9.35.0",
14+
"@eslint/js": "9.36.0",
1515
"@rollup/plugin-node-resolve": "16.0.1",
1616
"@rollup/plugin-terser": "0.4.4",
1717
"@rollup/plugin-typescript": "12.1.4",
1818
"covector": "^0.12.4",
19-
"eslint": "9.35.0",
19+
"eslint": "9.36.0",
2020
"eslint-config-prettier": "10.1.8",
2121
"eslint-plugin-security": "3.0.1",
2222
"prettier": "3.6.2",
23-
"rollup": "4.50.1",
23+
"rollup": "4.52.2",
2424
"tslib": "2.8.1",
2525
"typescript": "5.9.2",
26-
"typescript-eslint": "8.42.0"
26+
"typescript-eslint": "8.44.1"
2727
},
28+
"minimumReleaseAge": 4320,
2829
"pnpm": {
2930
"overrides": {
3031
"esbuild@<0.25.0": ">=0.25.0"
@@ -34,6 +35,6 @@
3435
]
3536
},
3637
"engines": {
37-
"pnpm": "^10.0.0"
38+
"pnpm": "^10.16.0"
3839
}
3940
}

plugins/deep-link/examples/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
"devDependencies": {
1717
"@tauri-apps/cli": "2.8.4",
1818
"typescript": "^5.7.3",
19-
"vite": "^7.0.4"
19+
"vite": "^7.0.7"
2020
}
2121
}

plugins/geolocation/android/src/main/java/Geolocation.kt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,9 @@ public class Geolocation(private val context: Context) {
9191
val lowPrio = if (networkEnabled) Priority.PRIORITY_BALANCED_POWER_ACCURACY else Priority.PRIORITY_LOW_POWER
9292
val prio = if (enableHighAccuracy) Priority.PRIORITY_HIGH_ACCURACY else lowPrio
9393

94-
Logger.error(prio.toString())
95-
96-
val locationRequest = LocationRequest.Builder(10000)
94+
val locationRequest = LocationRequest.Builder(timeout)
9795
.setMaxUpdateDelayMillis(timeout)
98-
.setMinUpdateIntervalMillis(5000)
96+
.setMinUpdateIntervalMillis(timeout)
9997
.setPriority(prio)
10098
.build()
10199

@@ -145,4 +143,4 @@ public class Geolocation(private val context: Context) {
145143

146144
return lastLoc
147145
}
148-
}
146+
}

plugins/store/examples/AppSettingsManager/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
"devDependencies": {
1111
"@tauri-apps/cli": "2.8.4",
1212
"typescript": "^5.7.3",
13-
"vite": "^7.0.4"
13+
"vite": "^7.0.7"
1414
}
1515
}

plugins/websocket/examples/tauri-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"devDependencies": {
1212
"@tauri-apps/cli": "2.8.4",
1313
"typescript": "^5.7.3",
14-
"vite": "^7.0.4"
14+
"vite": "^7.0.7"
1515
},
1616
"dependencies": {
1717
"tauri-plugin-websocket-api": "link:..\\.."

0 commit comments

Comments
 (0)