From 82894847429d22b1cdca71e59cefd76e831b992b Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Sun, 22 Dec 2024 12:25:32 +0100 Subject: [PATCH 1/3] Remove files not meant to be version-controlled --- .flutter-plugins | 2 -- .flutter-plugins-dependencies | 1 - .gitignore | 2 ++ 3 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 .flutter-plugins delete mode 100644 .flutter-plugins-dependencies diff --git a/.flutter-plugins b/.flutter-plugins deleted file mode 100644 index 55184ba..0000000 --- a/.flutter-plugins +++ /dev/null @@ -1,2 +0,0 @@ -# This is a generated file; do not edit or check into version control. -sensors_plus=/Users/dhikshithreddy/.pub-cache/hosted/pub.dev/sensors_plus-4.0.2/ diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies deleted file mode 100644 index a43948c..0000000 --- a/.flutter-plugins-dependencies +++ /dev/null @@ -1 +0,0 @@ -{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[{"name":"sensors_plus","path":"/Users/dhikshithreddy/.pub-cache/hosted/pub.dev/sensors_plus-4.0.2/","native_build":true,"dependencies":[]}],"android":[{"name":"sensors_plus","path":"/Users/dhikshithreddy/.pub-cache/hosted/pub.dev/sensors_plus-4.0.2/","native_build":true,"dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[{"name":"sensors_plus","path":"/Users/dhikshithreddy/.pub-cache/hosted/pub.dev/sensors_plus-4.0.2/","dependencies":[]}]},"dependencyGraph":[{"name":"sensors_plus","dependencies":[]}],"date_created":"2024-03-05 19:27:50.915462","version":"3.19.0"} \ No newline at end of file diff --git a/.gitignore b/.gitignore index ac5aa98..d5643c8 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,5 @@ migrate_working_dir/ **/doc/api/ .dart_tool/ build/ +**/.flutter-plugins +**/.flutter-plugins-dependencies From 9efffb0c58db79971c76e12c4a0ab6571088fd52 Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Sun, 22 Dec 2024 12:27:21 +0100 Subject: [PATCH 2/3] Update sensors_plus to >=4.0.2 <7.0.0 --- pubspec.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index 9a9ea06..d71bfd0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -3,7 +3,7 @@ description: "a configurable package to detect shake gestures, using the sensors version: 0.1.2 homepage: https://github.com/folksable/shake_detector issue_tracker: https://github.com/folksable/shake_detector/issues -funding: +funding: - https://github.com/sponsors/folksable environment: @@ -13,7 +13,7 @@ environment: dependencies: flutter: sdk: flutter - sensors_plus: ^4.0.2 + sensors_plus: '>=4.0.2 <7.0.0' dev_dependencies: flutter_test: From aaf3afafa1d9e4eab424d1e01bf52fc16e772e90 Mon Sep 17 00:00:00 2001 From: Jonas Wanke Date: Sun, 22 Dec 2024 12:28:16 +0100 Subject: [PATCH 3/3] Replace mismatching tabs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3fb57cc..acfb991 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ class HomePage extends StatelessWidget { ), ), ), - // The end. + // The end. ), ); }