Masterarbeit Richard Stern. Flutter App, sich mit einem Bluetooth-Gerät verbindet und Berührungen auf einem Sensor visualisiert.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. ## 0.3.9
  2. * Allow external packages to provide webview implementations for new platforms.
  3. ## 0.3.8+1
  4. * Suppress deprecation warning for BinaryMessages. See: https://github.com/flutter/flutter/issues/33446
  5. ## 0.3.8
  6. * Add `debuggingEnabled` property.
  7. ## 0.3.7+1
  8. * Fix an issue where JavaScriptChannel messages weren't sent from the platform thread on Android.
  9. ## 0.3.7
  10. * Fix loadUrlWithHeaders flaky test.
  11. ## 0.3.6+1
  12. * Remove un-used method params in webview\_flutter
  13. ## 0.3.6
  14. * Add an optional `headers` field to the controller.
  15. ## 0.3.5+5
  16. * Fixed error in documentation of `javascriptChannels`.
  17. ## 0.3.5+4
  18. * Fix bugs in the example app by updating it to use a `StatefulWidget`.
  19. ## 0.3.5+3
  20. * Make sure to post javascript channel messages from the platform thread.
  21. ## 0.3.5+2
  22. * Fix crash from `NavigationDelegate` on later versions of Android.
  23. ## 0.3.5+1
  24. * Fix a bug where updates to onPageFinished were ignored.
  25. ## 0.3.5
  26. * Added an onPageFinished callback.
  27. ## 0.3.4
  28. * Support specifying navigation delegates that can prevent navigations from being executed.
  29. ## 0.3.3+2
  30. * Exclude LongPress handler from semantics tree since it does nothing.
  31. ## 0.3.3+1
  32. * Fixed a memory leak on Android - the WebView was not properly disposed.
  33. ## 0.3.3
  34. * Add clearCache method to WebView controller.
  35. ## 0.3.2+1
  36. * Log a more detailed warning at build time about the previous AndroidX
  37. migration.
  38. ## 0.3.2
  39. * Added CookieManager to interface with WebView cookies. Currently has the ability to clear cookies.
  40. ## 0.3.1
  41. * Added JavaScript channels to facilitate message passing from JavaScript code running inside
  42. the WebView to the Flutter app's Dart code.
  43. ## 0.3.0
  44. * **Breaking change**. Migrate from the deprecated original Android Support
  45. Library to AndroidX. This shouldn't result in any functional changes, but it
  46. requires any Android apps using this plugin to [also
  47. migrate](https://developer.android.com/jetpack/androidx/migrate) if they're
  48. using the original support library.
  49. ## 0.2.0
  50. * Added a evaluateJavascript method to WebView controller.
  51. * (BREAKING CHANGE) Renamed the `JavaScriptMode` enum to `JavascriptMode`, and the WebView `javasScriptMode` parameter to `javascriptMode`.
  52. ## 0.1.2
  53. * Added a reload method to the WebView controller.
  54. ## 0.1.1
  55. * Added a `currentUrl` accessor for the WebView controller to look up what URL
  56. is being displayed.
  57. ## 0.1.0+1
  58. * Fix null crash when initialUrl is unset on iOS.
  59. ## 0.1.0
  60. * Add goBack, goForward, canGoBack, and canGoForward methods to the WebView controller.
  61. ## 0.0.1+1
  62. * Fix case for "FLTWebViewFlutterPlugin" (iOS was failing to buld on case-sensitive file systems).
  63. ## 0.0.1
  64. * Initial release.