From e7a9dde3753c6996f86e4937a9a1d3f1c8dc2277 Mon Sep 17 00:00:00 2001 From: DominicGBauer Date: Thu, 28 Mar 2024 14:24:51 +0200 Subject: [PATCH 1/8] chore: update podfile.lock --- demos/supabase-todolist/ios/Podfile.lock | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/demos/supabase-todolist/ios/Podfile.lock b/demos/supabase-todolist/ios/Podfile.lock index 67398eaf..4f3c9973 100644 --- a/demos/supabase-todolist/ios/Podfile.lock +++ b/demos/supabase-todolist/ios/Podfile.lock @@ -10,18 +10,18 @@ PODS: - shared_preferences_foundation (0.0.1): - Flutter - FlutterMacOS - - sqlite3 (3.44.0): - - sqlite3/common (= 3.44.0) - - sqlite3/common (3.44.0) - - sqlite3/fts5 (3.44.0): + - sqlite3 (3.45.1): + - sqlite3/common (= 3.45.1) + - sqlite3/common (3.45.1) + - sqlite3/fts5 (3.45.1): - sqlite3/common - - sqlite3/perf-threadsafe (3.44.0): + - sqlite3/perf-threadsafe (3.45.1): - sqlite3/common - - sqlite3/rtree (3.44.0): + - sqlite3/rtree (3.45.1): - sqlite3/common - sqlite3_flutter_libs (0.0.1): - Flutter - - sqlite3 (~> 3.44.0) + - sqlite3 (~> 3.45.1) - sqlite3/fts5 - sqlite3/perf-threadsafe - sqlite3/rtree @@ -59,14 +59,14 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: app_links: 5ef33d0d295a89d9d16bb81b0e3b0d5f70d6c875 - camera_avfoundation: 8b8d780bcfb6a4a02b0fbe2b4bd17b5b71946e68 + camera_avfoundation: 759172d1a77ae7be0de08fc104cfb79738b8a59e Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695 - sqlite3: 6e2d4a4879854d0ec86b476bf3c3e30870bac273 - sqlite3_flutter_libs: eb769059df0356dc52ddda040f09cacc9391a7cf + sqlite3: 73b7fc691fdc43277614250e04d183740cb15078 + sqlite3_flutter_libs: af0e8fe9bce48abddd1ffdbbf839db0302d72d80 url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 PODFILE CHECKSUM: 13e359f40c4925bcdf0c1bfa13aeba35011fde30 -COCOAPODS: 1.14.3 +COCOAPODS: 1.15.2 From ccd4e1a26e896f004e77d4bcd6da236c5a62043b Mon Sep 17 00:00:00 2001 From: DominicGBauer Date: Thu, 28 Mar 2024 14:32:03 +0200 Subject: [PATCH 2/8] docs: update readme --- demos/supabase-todolist/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/supabase-todolist/README.md b/demos/supabase-todolist/README.md index b9524d48..bba3d1fd 100644 --- a/demos/supabase-todolist/README.md +++ b/demos/supabase-todolist/README.md @@ -6,11 +6,11 @@ Demo app demonstrating use of the PowerSync SDK for Flutter together with Supaba # Running the app -Install the Flutter SDK, then: +Install the Flutter SDK and [melos](https://melos.invertase.dev/~melos-latest/getting-started), then: ```sh cp lib/app_config_template.dart lib/app_config.dart -flutter pub get +melos bootstrap flutter run ``` From a406a8d0dbc166ef98158310de0a457208ef16cb Mon Sep 17 00:00:00 2001 From: DominicGBauer Date: Thu, 28 Mar 2024 14:46:47 +0200 Subject: [PATCH 3/8] chore: uncomment platform --- demos/supabase-todolist/ios/Podfile | 2 +- demos/supabase-todolist/ios/Podfile.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demos/supabase-todolist/ios/Podfile b/demos/supabase-todolist/ios/Podfile index 656de635..e9f73048 100644 --- a/demos/supabase-todolist/ios/Podfile +++ b/demos/supabase-todolist/ios/Podfile @@ -1,5 +1,5 @@ # Uncomment this line to define a global platform for your project -# platform :ios, '12.0' +platform :ios, '12.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' diff --git a/demos/supabase-todolist/ios/Podfile.lock b/demos/supabase-todolist/ios/Podfile.lock index 4f3c9973..56f60723 100644 --- a/demos/supabase-todolist/ios/Podfile.lock +++ b/demos/supabase-todolist/ios/Podfile.lock @@ -67,6 +67,6 @@ SPEC CHECKSUMS: sqlite3_flutter_libs: af0e8fe9bce48abddd1ffdbbf839db0302d72d80 url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 -PODFILE CHECKSUM: 13e359f40c4925bcdf0c1bfa13aeba35011fde30 +PODFILE CHECKSUM: f7b3cb7384a2d5da4b22b090e1f632de7f377987 COCOAPODS: 1.15.2 From bc9fc05612bb9f8bc4681a6e180f9327792c7e05 Mon Sep 17 00:00:00 2001 From: Dominic Gunther Bauer <46312751+DominicGBauer@users.noreply.github.com> Date: Thu, 28 Mar 2024 15:20:05 +0200 Subject: [PATCH 4/8] Update demos/supabase-todolist/README.md Co-authored-by: benitav --- demos/supabase-todolist/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/supabase-todolist/README.md b/demos/supabase-todolist/README.md index bba3d1fd..03aae91f 100644 --- a/demos/supabase-todolist/README.md +++ b/demos/supabase-todolist/README.md @@ -6,7 +6,7 @@ Demo app demonstrating use of the PowerSync SDK for Flutter together with Supaba # Running the app -Install the Flutter SDK and [melos](https://melos.invertase.dev/~melos-latest/getting-started), then: +Install [melos](https://melos.invertase.dev/~melos-latest/getting-started), then: ```sh cp lib/app_config_template.dart lib/app_config.dart From 4cd33341e89903e20a9c6b636783bc90ce94b689 Mon Sep 17 00:00:00 2001 From: benitav Date: Thu, 28 Mar 2024 15:41:42 +0200 Subject: [PATCH 5/8] Update Readme instructions for both demo apps --- demos/supabase-simple-chat/README.md | 8 +++++--- demos/supabase-todolist/README.md | 12 ++++++------ 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/demos/supabase-simple-chat/README.md b/demos/supabase-simple-chat/README.md index 6c892968..787ac168 100644 --- a/demos/supabase-simple-chat/README.md +++ b/demos/supabase-simple-chat/README.md @@ -4,8 +4,10 @@ Based on the Supabase Flutter tutorial to build a simple chat app: Date: Thu, 28 Mar 2024 15:48:40 +0200 Subject: [PATCH 6/8] Update demos/supabase-todolist/README.md Co-authored-by: benitav --- demos/supabase-todolist/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/supabase-todolist/README.md b/demos/supabase-todolist/README.md index 420b51b1..3471f779 100644 --- a/demos/supabase-todolist/README.md +++ b/demos/supabase-todolist/README.md @@ -10,7 +10,7 @@ Ensure you have [melos](https://melos.invertase.dev/~melos-latest/getting-starte 1. `cd demos/supabase-todolist` 2. `melos bootstrap` -3. `cp lib/app_config_template lib/app_config.dart` +3. `cp lib/app_config_template.dart lib/app_config.dart` 4. Insert your Supabase and PowerSync project credentials into `lib/app_config.dart` (See instructions below) 5. `flutter run` From 059d9dc2ca934c270843d28ade5f86962a8419a2 Mon Sep 17 00:00:00 2001 From: Dominic Gunther Bauer <46312751+DominicGBauer@users.noreply.github.com> Date: Thu, 28 Mar 2024 15:48:47 +0200 Subject: [PATCH 7/8] Update demos/supabase-simple-chat/README.md Co-authored-by: benitav --- demos/supabase-simple-chat/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/supabase-simple-chat/README.md b/demos/supabase-simple-chat/README.md index 787ac168..eeedeb20 100644 --- a/demos/supabase-simple-chat/README.md +++ b/demos/supabase-simple-chat/README.md @@ -8,6 +8,6 @@ Ensure you have [melos](https://melos.invertase.dev/~melos-latest/getting-starte 1. `cd demos/supabase-simple-chat` 2. `melos bootstrap` -3. `cp lib/app_config_template lib/app_config.dart` +3. `cp lib/app_config_template.dart lib/app_config.dart` 4. Insert your Supabase project credentials into `lib/app_config.dart` 5. `flutter run` From f6601be799ac6723383e049221494d02e1a3a925 Mon Sep 17 00:00:00 2001 From: DominicGBauer Date: Thu, 28 Mar 2024 16:10:10 +0200 Subject: [PATCH 8/8] chore: update podfile.lock --- demos/supabase-simple-chat/ios/Podfile | 2 +- demos/supabase-simple-chat/ios/Podfile.lock | 32 ++++++++++----------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/demos/supabase-simple-chat/ios/Podfile b/demos/supabase-simple-chat/ios/Podfile index fdcc671e..164df534 100644 --- a/demos/supabase-simple-chat/ios/Podfile +++ b/demos/supabase-simple-chat/ios/Podfile @@ -1,5 +1,5 @@ # Uncomment this line to define a global platform for your project -# platform :ios, '11.0' +platform :ios, '12.0' # CocoaPods analytics sends network stats synchronously affecting flutter build latency. ENV['COCOAPODS_DISABLE_STATS'] = 'true' diff --git a/demos/supabase-simple-chat/ios/Podfile.lock b/demos/supabase-simple-chat/ios/Podfile.lock index 60b48fbc..6dbc5f5f 100644 --- a/demos/supabase-simple-chat/ios/Podfile.lock +++ b/demos/supabase-simple-chat/ios/Podfile.lock @@ -10,18 +10,18 @@ PODS: - FlutterMacOS - sign_in_with_apple (0.0.1): - Flutter - - sqlite3 (3.43.1): - - sqlite3/common (= 3.43.1) - - sqlite3/common (3.43.1) - - sqlite3/fts5 (3.43.1): + - sqlite3 (3.45.1): + - sqlite3/common (= 3.45.1) + - sqlite3/common (3.45.1) + - sqlite3/fts5 (3.45.1): - sqlite3/common - - sqlite3/perf-threadsafe (3.43.1): + - sqlite3/perf-threadsafe (3.45.1): - sqlite3/common - - sqlite3/rtree (3.43.1): + - sqlite3/rtree (3.45.1): - sqlite3/common - sqlite3_flutter_libs (0.0.1): - Flutter - - sqlite3 (~> 3.43.1) + - sqlite3 (~> 3.45.1) - sqlite3/fts5 - sqlite3/perf-threadsafe - sqlite3/rtree @@ -64,15 +64,15 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: app_links: 5ef33d0d295a89d9d16bb81b0e3b0d5f70d6c875 - Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 - path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 - shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126 + Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 + path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c + shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695 sign_in_with_apple: f3bf75217ea4c2c8b91823f225d70230119b8440 - sqlite3: e0a0623a33a20a47cb5921552aebc6e9e437dc91 - sqlite3_flutter_libs: 0d61e18fab1bed977dbd2d2fc76a726044ca00e7 - url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4 - webview_flutter_wkwebview: 2e2d318f21a5e036e2c3f26171342e95908bd60a + sqlite3: 73b7fc691fdc43277614250e04d183740cb15078 + sqlite3_flutter_libs: af0e8fe9bce48abddd1ffdbbf839db0302d72d80 + url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 + webview_flutter_wkwebview: be0f0d33777f1bfd0c9fdcb594786704dbf65f36 -PODFILE CHECKSUM: 70d9d25280d0dd177a5f637cdb0f0b0b12c6a189 +PODFILE CHECKSUM: 7be2f5f74864d463a8ad433546ed1de7e0f29aef -COCOAPODS: 1.14.3 +COCOAPODS: 1.15.2