Skip to content
Merged

v2.7.52 #1423

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install Node 🧰
uses: actions/setup-node@v2
uses: actions/setup-node@v5
with:
node-version: '18'
node-version: "18"
- name: Cache node modules 📖
uses: actions/cache@v2
uses: actions/cache@v4.3.0
env:
cache-name: cache-node-modules
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bridge",
"version": "2.7.51",
"version": "2.7.52",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
Binary file modified public/packages.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions src/components/OutputFolders/ComMojang/ComMojang.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export class ComMojang extends Signal<void> {
directoryHandle === undefined &&
platform() === 'win32'
) {
const { join, localDataDir } = await import('@tauri-apps/api/path')
const { join, homeDir } = await import('@tauri-apps/api/path')

directoryHandle = await join(
await localDataDir(),
'Packages\\Microsoft.MinecraftUWP_8wekyb3d8bbwe\\LocalState\\games\\com.mojang'
await homeDir(),
'AppData\\Roaming\\Minecraft Bedrock\\Users\\Shared\\games\\com.mojang'
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/utils/app/dataPackage.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const zipSize = 1009347
export const zipSize = 1028237