From 92c46a8ff14a11a28337f35898e65145076500b0 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 09:26:56 +0100 Subject: [PATCH 1/6] 'unsafe_html' was removed in Dart '3.7.0' --- analysis_options.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index be9e77ff..49a7b177 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -16,7 +16,6 @@ linter: - comment_references - slash_for_doc_comments - use_key_in_widget_constructors - - unsafe_html - unnecessary_statements - throw_in_finally - always_use_package_imports From e98e179e3ec96923100816fe3bbf679b86b558d9 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 09:27:38 +0100 Subject: [PATCH 2/6] Updated macOS xcscheme --- .../Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme | 1 + 1 file changed, 1 insertion(+) diff --git a/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index c49f1a30..b2816dc6 100644 --- a/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -77,6 +77,7 @@ ignoresPersistentStateOnLaunch = "NO" debugDocumentVersioning = "YES" debugServiceExtension = "internal" + enableGPUValidationMode = "1" allowLocationSimulation = "YES"> From 245bd1a4ce8811addb9aa2bcbf5c040fc2b4c271 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 09:28:58 +0100 Subject: [PATCH 3/6] Updated iOS xcscheme --- .../ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme | 1 + 1 file changed, 1 insertion(+) diff --git a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme index f66dfbe5..dd5e6e00 100644 --- a/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +++ b/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -66,6 +66,7 @@ ignoresPersistentStateOnLaunch = "NO" debugDocumentVersioning = "YES" debugServiceExtension = "internal" + enableGPUValidationMode = "1" allowLocationSimulation = "YES"> From f69def9f5ed34b0b90bf633b4f7c619b71268e40 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:17:32 +0100 Subject: [PATCH 4/6] Added CHANGELOG.md --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e10cd1..11a4a1f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 8.3.6 +### General +- Updates to flutter 3.29. [@vicajilau](https://github.com/vicajilau). + ## 8.3.5 ### Android - Fixes allowCompression not working on Android. [1633](https://github.com/miguelpruivo/flutter_file_picker/issues/1633) From 9b2a4165b82cc497742246222f90c51d78a88b44 Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:38:50 +0100 Subject: [PATCH 5/6] Added .cxx folder to gitignore --- example/android/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/example/android/.gitignore b/example/android/.gitignore index 6f568019..37277cde 100644 --- a/example/android/.gitignore +++ b/example/android/.gitignore @@ -5,6 +5,7 @@ gradle-wrapper.jar /gradlew.bat /local.properties GeneratedPluginRegistrant.java +.cxx/ # Remember to never publicly share your keystore. # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app From 432243cae256e6e3a375e7d4f2710d7d1f83472b Mon Sep 17 00:00:00 2001 From: Victor Carreras <34163765+vicajilau@users.noreply.github.com> Date: Fri, 14 Feb 2025 10:58:42 +0100 Subject: [PATCH 6/6] Update CHANGELOG.md Co-authored-by: Navaron Bracke --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11a4a1f5..bc536c3f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 8.3.6 ### General -- Updates to flutter 3.29. [@vicajilau](https://github.com/vicajilau). +- Added compatibility with Flutter 3.29. [@vicajilau](https://github.com/vicajilau). ## 8.3.5 ### Android