Skip to content

Commit 1453ba0

Browse files
committed
Sync capacitor package versions & upgrade capacitor build to 36.1
1 parent 62f1996 commit 1453ba0

File tree

6 files changed

+43
-37
lines changed

6 files changed

+43
-37
lines changed

.github/workflows/build-mobile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build Mobile
22

33
env:
4-
ANDROID_SDK_VERSION: "35.0.0"
4+
ANDROID_SDK_VERSION: "36.1.0"
55

66
on:
77
pull_request:

.github/workflows/release-mobile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Build Capacitor Release
22

33
env:
4-
ANDROID_SDK_VERSION: "35.0.0"
4+
ANDROID_SDK_VERSION: "36.1.0"
55

66
on:
77
push:

mobile/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
},
1010
"dependencies": {
1111
"@capacitor-community/safe-area": "^7.0.0-alpha.1",
12-
"@capacitor/android": "^7.2.0",
12+
"@capacitor/android": "^7.4.4",
1313
"@capacitor/app": "^7.1.0",
1414
"@capacitor/browser": "^7.0.2",
15-
"@capacitor/cli": "^7.2.0",
16-
"@capacitor/core": "^7.2.0",
17-
"@capacitor/filesystem": "^7.0.1",
18-
"@capacitor/keyboard": "^7.0.1",
15+
"@capacitor/cli": "^7.4.4",
16+
"@capacitor/core": "^7.4.4",
17+
"@capacitor/filesystem": "^7.1.4",
18+
"@capacitor/keyboard": "^7.0.3",
1919
"@capacitor/preferences": "^7.0.2",
20-
"@capacitor/screen-orientation": "^7.0.1",
21-
"@capacitor/status-bar": "^7.0.1",
22-
"@capawesome/capacitor-file-picker": "^7.0.1"
20+
"@capacitor/screen-orientation": "^7.0.2",
21+
"@capacitor/status-bar": "^7.0.3",
22+
"@capawesome/capacitor-file-picker": "^7.2.0"
2323
}
2424
}

package-lock.json

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/components/modals/login-modal.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ export default function LoginModal({ signIn }: { signIn: () => void }) {
2828
return (
2929
<ModalWrapper
3030
isOpen={isModelOpen}
31-
setIsOpen={setIsModelOpen}
31+
setIsOpen={(open: boolean) => {
32+
editorContext?.setEditorStates((prev) => ({
33+
...prev,
34+
isSigningIn: false,
35+
}));
36+
setIsModelOpen(open);
37+
}}
3238
title={"Access Pulse Editor Workspace"}
3339
placement={"center"}
3440
>

web/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
},
1313
"dependencies": {
1414
"@capacitor-community/safe-area": "^7.0.0-alpha.1",
15-
"@capacitor/android": "^7.4.3",
15+
"@capacitor/android": "^7.4.4",
1616
"@capacitor/app": "^7.1.0",
1717
"@capacitor/browser": "^7.0.2",
18-
"@capacitor/cli": "^7.4.3",
19-
"@capacitor/core": "^7.4.3",
20-
"@capacitor/filesystem": "7.1.4",
18+
"@capacitor/cli": "^7.4.4",
19+
"@capacitor/core": "^7.4.4",
20+
"@capacitor/filesystem": "^7.1.4",
2121
"@capacitor/keyboard": "^7.0.3",
2222
"@capacitor/preferences": "^7.0.2",
2323
"@capacitor/screen-orientation": "^7.0.2",
@@ -73,4 +73,4 @@
7373
"typescript": "^5",
7474
"workbox-webpack-plugin": "^7.3.0"
7575
}
76-
}
76+
}

0 commit comments

Comments
 (0)