Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-mobile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
- name: Build Web App
run: pnpm --filter @nexus-notes/web generate

- name: Sync Capacitor
run: pnpm --filter @nexus-notes/mobile exec cap sync android
- name: Add Android Platform
run: pnpm --filter @nexus-notes/mobile exec cap add android

- name: Build APK
working-directory: apps/mobile/android
Expand Down
1 change: 1 addition & 0 deletions apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"scripts": {
"dev": "tauri dev",
"build": "tauri build",
"tauri": "tauri",
"lint": "eslint ."
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/mobile/capacitor.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { CapacitorConfig } from '@capacitor/cli'

const config: CapacitorConfig = {
appId: 'com.nexus-notes.mobile',
appId: 'com.nexusnotes.mobile',
appName: 'NexusNotes',
webDir: '../web/.output/public',
server: {
Expand Down
1 change: 1 addition & 0 deletions apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"lint": "eslint ."
},
"dependencies": {
"@capacitor/android": "^6.2.1",
"@capacitor/core": "^6.0.0",
"@capacitor/filesystem": "^6.0.0",
"@capacitor/keyboard": "^6.0.0",
Expand Down
14 changes: 14 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
{
"firestore": {
"rules": "firestore.rules"
},
"hosting": {
"public": "apps/web/.output/public",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
12 changes: 12 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading