- Centralized third-party source code in
//third_party_base/
and separated it from our code.- However, our Dart code and C++ code do not directly reference
//third_party_base/
, but instead access it through symbolic links from eachthird_party/
directory. This is due to limitations in Dart. Additionally, when uploading packages to Pub,//third_party_base/
is not uploaded, and instead symbolic links within eachthird_party/
directory are materialized into regular files. For more details, refer to third_party_base/README.md and create_symlinks_to_third_party.
- However, our Dart code and C++ code do not directly reference
- ThirdPartyNotices.txt is now auto-generated by create_symlinks_to_third_party.
- Changed the internal process of building the subprocess-executable. Previously, symbolic links were created to
//linux/subprocess/src/*
in the CEF binary distribution, but this has been discontinued. Please refer to//linux/README.md
and//linux/CMakeLists.txt
for details on the new build process. - Fixed build errors with clang 15.
- Improvements to the documentation.
- Minor improvements to the documentation.
- Fix the broken GIF image links in README.md.
- (Increase the patch version to reflect the fixed README in pub.dev.)
- Initial release. Works with webview_flutter v3.0.4.