forked from alesimula/wsa_pacman
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
130 changed files
with
5,408 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Miscellaneous | ||
*.class | ||
*.log | ||
*.pyc | ||
*.swp | ||
.DS_Store | ||
.atom/ | ||
.buildlog/ | ||
.history | ||
.svn/ | ||
|
||
# IntelliJ related | ||
*.iml | ||
*.ipr | ||
*.iws | ||
.idea/ | ||
|
||
# The .vscode folder contains launch configuration and tasks you configure in | ||
# VS Code which you may wish to be included in version control, so this line | ||
# is commented out by default. | ||
#.vscode/ | ||
|
||
# Flutter/Dart/Pub related | ||
**/doc/api/ | ||
**/ios/Flutter/.last_build_id | ||
.dart_tool/ | ||
.flutter-plugins | ||
.flutter-plugins-dependencies | ||
.packages | ||
.pub-cache/ | ||
.pub/ | ||
/build/ | ||
|
||
# Web related | ||
lib/generated_plugin_registrant.dart | ||
|
||
# Symbolication related | ||
app.*.symbols | ||
|
||
# Obfuscation related | ||
app.*.map.json | ||
|
||
/android/ | ||
ios/ | ||
linux/ | ||
macos/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# This file tracks properties of this Flutter project. | ||
# Used by Flutter tool to assess capabilities and perform upgrades etc. | ||
# | ||
# This file should be version controlled and should not be manually edited. | ||
|
||
version: | ||
revision: 78910062997c3a836feee883712c241a5fd22983 | ||
channel: stable | ||
|
||
project_type: app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Disable null-safety", | ||
"type": "dart", | ||
"request": "launch", | ||
"program": "lib/main.dart", | ||
// Any custom environment variables to set when running the app with this | ||
// launch config. | ||
"env": { | ||
"RELEASE_MODE": false | ||
}, | ||
// Arguments to be passed to the Dart or Flutter app. | ||
"args": [ | ||
"--no-sound-null-safety" | ||
], | ||
// "debugConsole" or "terminal". If set to "terminal", will run in the built-in | ||
// terminal and will support reading from `stdin`. However some other debug | ||
// features may be limited. | ||
"console": "debugConsole", | ||
|
||
// Set to run a Flutter app on a specific device, ignoring the device selected | ||
// in the status bar. | ||
"deviceId": "windows", | ||
|
||
// "debug", "profile" or "release". | ||
"flutterMode": "profile", | ||
|
||
// Allows running Flutter tests on a real device instead of the default headless | ||
// flutter-tester device. | ||
"runTestsOnDevice": false, | ||
|
||
// If codeLens is defined, this launch configuration can be launched from custom | ||
// CodeLens links in the editor (see the page linked above for more info). | ||
"codeLens": { | ||
|
||
// This array sets where custom CodeLens links will be rendered: | ||
// - run-test: Above test functions as a Run link | ||
// - debug-test: Above test functions as a Debug link | ||
// - run-test-file: Above main functions in test files as a Run link | ||
// - debug-test-file: Above main functions in test files as a Debug link | ||
// - run-file: Above main functions in bin/tool/lib files as a Run link | ||
// - debug-file: Above main functions in bin/tool/lib files as a Debug link | ||
"for": [ "run-test", "run-test-file", "debug-test", "debug-test-file" ], | ||
|
||
// If specificed, the custom CodeLens will only appear for files that begin | ||
// with this path. | ||
"path": "test/integration_tests", | ||
|
||
// Text for the custom CodeLens. If not specified, will use the name field | ||
// from the parent launch configuration. The string "${debugType}" here will | ||
// be replaced with "run" or "debug" depending on the rendered position | ||
// (see the for field above). | ||
"title": "${debugType} (release)" | ||
}, | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"files.associations": { | ||
"xstring": "cpp", | ||
"string": "cpp", | ||
"algorithm": "cpp", | ||
"any": "cpp", | ||
"array": "cpp", | ||
"atomic": "cpp", | ||
"cctype": "cpp", | ||
"chrono": "cpp", | ||
"clocale": "cpp", | ||
"cmath": "cpp", | ||
"compare": "cpp", | ||
"concepts": "cpp", | ||
"condition_variable": "cpp", | ||
"cstddef": "cpp", | ||
"cstdint": "cpp", | ||
"cstdio": "cpp", | ||
"cstdlib": "cpp", | ||
"cstring": "cpp", | ||
"cwchar": "cpp", | ||
"exception": "cpp", | ||
"functional": "cpp", | ||
"initializer_list": "cpp", | ||
"ios": "cpp", | ||
"iosfwd": "cpp", | ||
"iostream": "cpp", | ||
"istream": "cpp", | ||
"iterator": "cpp", | ||
"limits": "cpp", | ||
"list": "cpp", | ||
"map": "cpp", | ||
"memory": "cpp", | ||
"mutex": "cpp", | ||
"new": "cpp", | ||
"optional": "cpp", | ||
"ostream": "cpp", | ||
"ratio": "cpp", | ||
"set": "cpp", | ||
"shared_mutex": "cpp", | ||
"sstream": "cpp", | ||
"stdexcept": "cpp", | ||
"streambuf": "cpp", | ||
"system_error": "cpp", | ||
"thread": "cpp", | ||
"tuple": "cpp", | ||
"type_traits": "cpp", | ||
"typeinfo": "cpp", | ||
"unordered_map": "cpp", | ||
"utility": "cpp", | ||
"variant": "cpp", | ||
"vector": "cpp", | ||
"xfacet": "cpp", | ||
"xhash": "cpp", | ||
"xiosbase": "cpp", | ||
"xlocale": "cpp", | ||
"xlocinfo": "cpp", | ||
"xlocnum": "cpp", | ||
"xmemory": "cpp", | ||
"xstddef": "cpp", | ||
"xtr1common": "cpp", | ||
"xtree": "cpp", | ||
"xutility": "cpp" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# wsa_pacman | ||
|
||
A GUI package manager and package installer for Windows Subsystem for Android (WSA). | ||
|
||
Shamelessly kanged from the fluent_ui example project, soon to be expanded and improved |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include: package:flutter_lints/flutter.yaml |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.