1. 08 Dec, 2017 3 commits
  2. 07 Dec, 2017 18 commits
  3. 06 Dec, 2017 13 commits
  4. 05 Dec, 2017 6 commits
    • Greg Spencer's avatar
      Use .pub-cache from Flutter root, if it exists. (#13358) · f29ecba6
      Greg Spencer authored
      The purpose of this PR is to make it so that when the user runs 'flutter', if they have a .pub-cache directory in their flutter root, we use that instead of the default location for the pub cache. Otherwise, it should act as before.
      
      The eventual goal is to support a pre-populated flutter .zip/.tar.gz file that has everything the developer needs in one bundle. In order for that to actually work, we need to have the pub cache be self-contained, and not in the user's home dir.
      
      Another advantage of this is that if you have multiple flutter repos that you're switching between, then the versions in the pub cache will remain static when you switch between them.
      
      This is an attempt to re-land: #13248. Includes a fix for the test that makes it work on bots in the presence of PUB_CACHE being set, and no other changes.
      f29ecba6
    • Greg Spencer's avatar
      Reverting my .pub-cache change to figure out why it's still failing. (#13355) · c89cf6cc
      Greg Spencer authored
      * Revert "Add tests."
      
      This reverts commit 31bad961ff2220a2708917ff8f748fed7efa9b51.
      
      * Revert "Use .pub-cache from Flutter root, if it exists. (#13248)"
      
      This reverts commit 72d6bcc3.
      c89cf6cc
    • Greg Spencer's avatar
      Fix a problem with the flutter_tools/test/dart/pub_get_test.dart test. (#13354) · 3174443e
      Greg Spencer authored
      It turns out that when a PR build clones the flutter repo, it puts it into a directory called "flutter", and when the "real" build clones the flutter repo, it puts it into a directory called "build". This allowed the tests to succeed in my PR, but fail when I committed it.
      
      This fixes the test so it doesn't depend on the cloned directory name.
      3174443e
    • Greg Spencer's avatar
      Use .pub-cache from Flutter root, if it exists. (#13248) · 72d6bcc3
      Greg Spencer authored
      The purpose of this PR is to make it so that when the user runs 'flutter', if they have a .pub-cache directory in their flutter root, we use that instead of the default location for the pub cache. Otherwise, it should act as before.
      
      The eventual goal is to support a pre-populated flutter .zip/.tar.gz file that has everything the developer needs in one bundle. In order for that to actually work, we need to have the pub cache be self-contained, and not in the user's home dir.
      
      Another advantage of this is that if you have multiple flutter repos that you're switching between, then the versions in the pub cache will remain static when you switch between them.
      72d6bcc3
    • xster's avatar
      Make drawer demo header not scroll away (#13337) · 9db8966f
      xster authored
      * Make drawer demo header not scroll
      
      * Add test for gallery drawer demo and fix user accounts drawer header overflow
      9db8966f
    • Martin Kustermann's avatar