1. 27 Nov, 2019 1 commit
    • Ian Hickson's avatar
      License update (#45373) · 449f4a66
      Ian Hickson authored
      * Update project.pbxproj files to say Flutter rather than Chromium
      
      Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright.
      
      * Update the copyright notice checker to require a standard notice on all files
      
      * Update copyrights on Dart files. (This was a mechanical commit.)
      
      * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine.
      
      Some were already marked "The Flutter Authors", not clear why. Their
      dates have been normalized. Some were missing the blank line after the
      license. Some were randomly different in trivial ways for no apparent
      reason (e.g. missing the trailing period).
      
      * Clean up the copyrights in non-Dart files. (Manual edits.)
      
      Also, make sure templates don't have copyrights.
      
      * Fix some more ORGANIZATIONNAMEs
      449f4a66
  2. 08 Aug, 2019 1 commit
  3. 05 Apr, 2019 1 commit
  4. 06 Feb, 2019 1 commit
  5. 27 Jul, 2018 1 commit
  6. 27 Feb, 2018 1 commit
  7. 14 Feb, 2018 1 commit
  8. 11 Jan, 2018 1 commit
    • Michael Goderbauer's avatar
      Use bundled mingit on Windows if available (#14025) · 54e33331
      Michael Goderbauer authored
      In the packaged ZIP files for Flutter we bundle mingit on Windows to make setup for our users easier (they don't have to download and install git anymore). This change makes Flutter use the bundled mingit if it is available and if git is not installed on the system.
      
      This change will still require that users add `flutter\bin` to their path or they'll have to execute `flutter\bin\flutter.bat` directly. A follow-up PR will add a pre-configured Flutter Console that people can start with a double-click to minimize setup even further.
      
      Also in this PR:
      * If 7Zip is not available to unpack the Dart SDK try 7Zip's standalone version.
      54e33331
  9. 07 Dec, 2017 1 commit
    • Jakob Andersen's avatar
      Make artifacts URLs configurable. (#13380) · e1018fab
      Jakob Andersen authored
      Add support for configuring the base storage URL for Flutter's
      artifacts. If FLUTTER_STORAGE_BASE_URL is set, use it instead of
      storage.googleapis.com.
      
      The pub server can be overridden by setting PUB_HOSTED_URL.
      e1018fab
  10. 24 Jul, 2017 1 commit
  11. 19 Jul, 2017 1 commit
  12. 13 Jun, 2017 1 commit
  13. 10 Mar, 2017 1 commit
  14. 08 Mar, 2017 1 commit
  15. 07 Mar, 2017 2 commits
  16. 24 Feb, 2017 1 commit
  17. 23 Feb, 2017 1 commit
  18. 14 Feb, 2017 1 commit
  19. 24 Jan, 2017 1 commit
    • Michael Goderbauer's avatar
      Launch Flutter Tools on Windows. (#7613) · 51dc83dd
      Michael Goderbauer authored
      This brings the Windows script up to par with the Linux/Mac script.
      
      `flutter doctor` works.
      
      There are two scripts (`bin/flutter` and `bin/internal/update_dart-sdk`), which are platform dependent (bash script on Linux/Max, PowerShell script on Windows) and we need to keep an eye on making sure that their logic stays in sync. Both scripts are rather simple and I am not expecting many changes to them. I also made sure that both versions follow the same structure to make it easier to keep them consistent.
      
      Required for https://github.com/flutter/flutter/issues/138
      51dc83dd