- 15 Oct, 2021 1 commit
-
-
Emmanuel Garcia authored
-
- 26 Feb, 2021 1 commit
-
-
Jenn Magder authored
-
- 05 Dec, 2020 1 commit
-
-
Jenn Magder authored
-
- 29 Sep, 2020 1 commit
-
-
Marcus Tomlinson authored
-
- 12 Aug, 2020 1 commit
-
-
Mouad Debbar authored
-
- 30 Jul, 2020 1 commit
-
-
Jim Graham authored
-
- 29 Jun, 2020 1 commit
-
-
Yegor authored
-
- 23 Jun, 2020 1 commit
-
-
Christopher Fujino authored
-
- 06 Feb, 2020 1 commit
-
-
Jonah Williams authored
-
- 06 Jan, 2020 1 commit
-
-
Jonah Williams authored
-
- 22 Nov, 2019 1 commit
-
-
Emmanuel Garcia authored
Add `.flutter-plugins-dependencies` to the project, which contains the app's plugin dependency graph (#45379)
-
- 19 Nov, 2019 1 commit
-
-
Shi-Hao Hong authored
-
- 01 Nov, 2019 1 commit
-
-
Dan Field authored
-
- 29 Oct, 2019 1 commit
-
-
Christopher Fujino authored
-
- 26 Oct, 2019 1 commit
-
-
Jonah Williams authored
This reverts commit 8e8d235d.
-
- 25 Oct, 2019 1 commit
-
-
Christopher Fujino authored
-
- 15 Oct, 2019 1 commit
-
-
Jenn Magder authored
-
- 13 Sep, 2019 1 commit
-
-
Jenn Magder authored
-
- 08 Aug, 2019 1 commit
-
-
Jason Simmons authored
-
- 19 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 07 Mar, 2019 1 commit
-
-
Jonah Williams authored
-
- 15 Jan, 2019 1 commit
-
-
Jonathan Wilbur authored
-
- 10 Jan, 2019 1 commit
-
-
Greg Spencer authored
-
- 09 Jan, 2019 1 commit
-
-
jxltom authored
* Remove *.lock from gitignore * Remove pubspec.lock from gitignore
-
- 19 Nov, 2018 1 commit
-
-
Janice Collins authored
-
- 16 May, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 19 Mar, 2018 1 commit
-
- 12 Mar, 2018 1 commit
-
-
xster authored
-
- 27 Feb, 2018 1 commit
-
-
Chris Bracken authored
Dart is migrating to .dart_tool/ as the location for cached artifacts and other temporary files generated by tooling in the SDK. As part of this, pub will be migrating from .pub to .dart_tool/pub. In future, this path will also be used for other tooling, such as package:build.
-
- 16 Feb, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 18 Jan, 2018 1 commit
-
-
Ian Hickson authored
Generate the "version" file from git tags. Remove the old VERSION file and mentions of versions in pubspec.yaml files. Replace the old update_versions.dart script with a new roll_dev.dart script. Update "flutter channel". Update "flutter upgrade", including making it transition from alpha to dev. Update "flutter --version" and "flutter doctor".
-
- 11 Jan, 2018 1 commit
-
-
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.
-
- 19 Dec, 2017 1 commit
-
-
xster authored
-
- 14 Dec, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 05 Dec, 2017 3 commits
-
-
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.
-
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.
-
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.
-
- 29 Nov, 2017 1 commit
-
-
Greg Spencer authored
This consolidates all of the non-template .gitignore rules into the top level .gitignore, to ignore common things more broadly, with less maintenance needed for the .gitignore files. Does not touch the templates, so that they still produce needed .gitignores as part of flutter create.
-
- 13 Nov, 2017 1 commit
-
-
Greg Spencer authored
Creates a new (hidden) flutter command 'ide-config' that will create and/or update existing .iml files and some files under the .idea directory, as well as removing existing *.iml files and the .idea directory. It also: * Adds *.iml to the .gitignore * Removes existing .iml files from the repo, and moves them to the packages/flutter_tools/ide_templates/intellij directory. * Adds a flag to ide-config ('--update-templates') that will take any new .iml files in the flutter tree and add them to the existing templates. - If --overwrite is also specified, then all existing templates will also be overwritten with the contents from the flutter tree, and any that have been deleted from the flutter tree will also be removed from the templates. * Added new run configurations for all existing app targets that will now also be automatically added to IntelliJ. * Setting up the environment also includes setting the coding style guidelines and the git VCS. * Note that after this PR lands, Flutter developers will need to run it once to re-create the .iml files and configuration files that have been removed. After this PR lands, .iml files will no longer appear in the untracked files section for git.
-
- 17 Mar, 2017 1 commit
-
-
Phil Quitslund authored
The excellent `local-history` plugin for vscode, saves history in `.history` files; this ignores them. See: https://marketplace.visualstudio.com/items?itemName=xyz.local-history
-