diff --git a/CHANGELOG.md b/CHANGELOG.md index 512cd140..506475e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ - [x] Improve search results loading indicator - [x] Make zaps prettier with bitcoin-connect +- [x] Improve DM loading and deliverability +- [x] Add ability to search other people's lists and feeds +- [x] Limit recursive quotes # 0.4.5 diff --git a/capacitor.config.ts b/capacitor.config.ts index db3f5d60..d7951746 100644 --- a/capacitor.config.ts +++ b/capacitor.config.ts @@ -1,10 +1,9 @@ -import {CapacitorConfig} from "@capacitor/cli" +import type { CapacitorConfig } from '@capacitor/cli'; const config: CapacitorConfig = { - appId: "social.coracle.app", - appName: "Coracle", - webDir: "dist", - bundledWebRuntime: false, -} + appId: 'social.coracle.app', + appName: 'Coracle', + webDir: 'dist' +}; -export default config +export default config; diff --git a/package-lock.json b/package-lock.json index 5ae475b1..a4ecb42f 100644 Binary files a/package-lock.json and b/package-lock.json differ diff --git a/package.json b/package.json index d1d623d1..5ae88ba4 100644 --- a/package.json +++ b/package.json @@ -16,10 +16,7 @@ "watch": "find src -type f | entr -r" }, "devDependencies": { - "@capacitor/android": "^5.7.5", - "@capacitor/cli": "^5.7.5", - "@capacitor/core": "^5.7.5", - "@capacitor/ios": "^5.7.5", + "@capacitor/cli": "^6.0.0", "@sveltejs/vite-plugin-svelte": "^3.1.0", "@tsconfig/svelte": "^5.0.4", "@types/ramda": "^0.29.12", @@ -49,6 +46,9 @@ }, "dependencies": { "@bugsnag/js": "^7.22.4", + "@capacitor/android": "^6.0.0", + "@capacitor/core": "^6.0.0", + "@capacitor/ios": "^6.0.0", "@event-calendar/core": "^2.6.1", "@event-calendar/day-grid": "^2.6.1", "@event-calendar/interaction": "^2.6.1",