1. 28 Jun, 2021 1 commit
  2. 08 Jun, 2021 1 commit
  3. 01 Jun, 2021 1 commit
  4. 19 May, 2021 1 commit
  5. 15 May, 2021 1 commit
  6. 08 Apr, 2021 1 commit
  7. 07 Apr, 2021 1 commit
  8. 30 Mar, 2021 1 commit
  9. 24 Mar, 2021 1 commit
  10. 22 Mar, 2021 1 commit
  11. 16 Mar, 2021 1 commit
  12. 25 Feb, 2021 1 commit
  13. 18 Feb, 2021 1 commit
  14. 14 Feb, 2021 1 commit
  15. 28 Jan, 2021 1 commit
  16. 27 Jan, 2021 2 commits
  17. 19 Jan, 2021 1 commit
  18. 08 Jan, 2021 1 commit
  19. 10 Dec, 2020 1 commit
  20. 01 Dec, 2020 1 commit
  21. 20 Nov, 2020 2 commits
  22. 13 Nov, 2020 1 commit
  23. 26 Oct, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] implement safe file copy with multiple fallbacks (#69000) · 2e54c4a8
      Jonah Williams authored
      The tool observes a large number of unhandled exceptions during the file copy portion of flutter create. it is difficult to tell whether the permission issue is caused by the source/destination, or whether it is due to a bug in dart:io.
      
      To work around this, implement a permission check for both the source and dest files. If either fails, the tool can exit with a more specific message.
      
      If these checks pass, then perform the actual copy. If the copy fails, fallback to manually copying the bytes
      2e54c4a8
  24. 19 Oct, 2020 1 commit
  25. 15 Oct, 2020 1 commit
  26. 12 Oct, 2020 1 commit
  27. 10 Oct, 2020 1 commit
  28. 18 Sep, 2020 1 commit
  29. 16 Sep, 2020 1 commit
  30. 21 Aug, 2020 1 commit
  31. 20 Aug, 2020 1 commit
  32. 30 Jul, 2020 1 commit
  33. 29 Jul, 2020 1 commit
  34. 15 Jul, 2020 1 commit
    • Jonah Williams's avatar
      [flutter_tools] generate a synthetic flutter_gen package on pub get (#61261) · d8b6fa15
      Jonah Williams authored
      Allow configuring the flutter_manifest to support a synthetic package, this is done through flutter: generate: true.
      
      When running pub get, insert a flutter_gen entry into the packages if it does not already exist. This points to .dart_tool/flutter_gen, which can be updated to contain the generated intl sources (But doesn't currently)
      
      Adds an integration test that verifies this code can be run and imported when enabled.
      
      Part of #60914
      d8b6fa15
  35. 13 Jul, 2020 1 commit
  36. 11 Jul, 2020 1 commit
  37. 24 Jun, 2020 2 commits
    • Jonah Williams's avatar
      [flutter_tools] maintain file manifest for create (#59706) · a0334fb5
      Jonah Williams authored
      First pass at fixing #57985 and implementing #59602
      
      This doesn't have enough metadata to be useful for IDEs yet, but it prevents the issue from getting worse while we iterate on it.
      a0334fb5
    • stuartmorgan's avatar
      Consider the Linux template stable (#60163) · d9902a54
      stuartmorgan authored
      Remove the version checking and associated warnings. The Linux template
      and build process will now be subject to more typical Flutter breaking
      change policy, and should no longer require regularly deleting and
      recreating the platform directory.
      d9902a54