Skip to content

Commit 4f9930f

Browse files
authored
Merge pull request #1423 from bridge-core/dev
v2.7.52
2 parents ea11385 + fea8ad6 commit 4f9930f

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout 🛎️
13-
uses: actions/checkout@v2.3.1
13+
uses: actions/checkout@v5
1414
with:
1515
persist-credentials: false
1616
- name: Install Node 🧰
17-
uses: actions/setup-node@v2
17+
uses: actions/setup-node@v5
1818
with:
19-
node-version: '18'
19+
node-version: "18"
2020
- name: Cache node modules 📖
21-
uses: actions/cache@v2
21+
uses: actions/cache@v4.3.0
2222
env:
2323
cache-name: cache-node-modules
2424
with:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bridge",
3-
"version": "2.7.51",
3+
"version": "2.7.52",
44
"private": true,
55
"scripts": {
66
"dev": "vite",

public/packages.zip

18.4 KB
Binary file not shown.

src/components/OutputFolders/ComMojang/ComMojang.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ export class ComMojang extends Signal<void> {
5050
directoryHandle === undefined &&
5151
platform() === 'win32'
5252
) {
53-
const { join, localDataDir } = await import('@tauri-apps/api/path')
53+
const { join, homeDir } = await import('@tauri-apps/api/path')
5454

5555
directoryHandle = await join(
56-
await localDataDir(),
57-
'Packages\\Microsoft.MinecraftUWP_8wekyb3d8bbwe\\LocalState\\games\\com.mojang'
56+
await homeDir(),
57+
'AppData\\Roaming\\Minecraft Bedrock\\Users\\Shared\\games\\com.mojang'
5858
)
5959
}
6060

src/utils/app/dataPackage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const zipSize = 1009347
1+
export const zipSize = 1028237

0 commit comments

Comments
 (0)