Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Images #96

Merged
merged 15 commits into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"type": "dart",
"program": "packages/app/lib/main.dart",
"flutterMode": "debug",
"toolArgs": ["--dart-define=FLUTTER_WEB_DEBUG_SHOW_SEMANTICS=true", ]
"toolArgs": [
"--dart-define=FLUTTER_WEB_DEBUG_SHOW_SEMANTICS=true"
]
}
]
}
80 changes: 60 additions & 20 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,6 @@

// Speed up operations on Windows by reducing file locking & watching over `.dart_tool`.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.dart_tool": true
},

Expand All @@ -100,22 +94,69 @@

// Make commit messages more consistent.
"commitlint.config.extend.rules": {
"body-leading-blank": [1, "always"],
"body-max-line-length": [2, "always", 72],
"body-case": [1, "always", ["sentence-case"]],
"footer-leading-blank": [1, "always"],
"footer-max-line-length": [2, "always", 72],
"header-max-length": [2, "always", 50],
"scope-case": [2, "always", "lower-case"],
"body-leading-blank": [
1,
"always"
],
"body-max-line-length": [
2,
"always",
72
],
"body-case": [
1,
"always",
[
"sentence-case"
]
],
"footer-leading-blank": [
1,
"always"
],
"footer-max-line-length": [
2,
"always",
72
],
"header-max-length": [
2,
"always",
50
],
"scope-case": [
2,
"always",
"lower-case"
],
"subject-case": [
2,
"never",
["sentence-case", "start-case", "pascal-case", "upper-case"]
[
"sentence-case",
"start-case",
"pascal-case",
"upper-case"
]
],
"subject-empty": [
2,
"never"
],
"subject-full-stop": [
2,
"never",
"."
],
"type-case": [
2,
"always",
"lower-case"
],
"type-empty": [
2,
"never"
],
"subject-empty": [2, "never"],
"subject-full-stop": [2, "never", "."],
"type-case": [2, "always", "lower-case"],
"type-empty": [2, "never"],
"type-enum": [
2,
"always",
Expand All @@ -138,6 +179,5 @@
// Pin CI for the current branch to the status bar.
"github-actions.workflows.pinned.workflows": [
".github/workflows/ci.yaml"
],
"C_Cpp.errorSquiggles": "enabled"
]
}
14 changes: 7 additions & 7 deletions packages/app/.metadata
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@
# This file should be version controlled and should not be manually edited.

version:
revision: "17025dd88227cd9532c33fa78f5250d548d87e9a"
channel: "stable"
revision: "5f2bf18183824b0acababc3c6017f9489ef22bc9"
channel: "master"

project_type: app

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
base_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
- platform: android
create_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
base_revision: 17025dd88227cd9532c33fa78f5250d548d87e9a
create_revision: 5f2bf18183824b0acababc3c6017f9489ef22bc9
base_revision: 5f2bf18183824b0acababc3c6017f9489ef22bc9
- platform: windows
create_revision: 5f2bf18183824b0acababc3c6017f9489ef22bc9
base_revision: 5f2bf18183824b0acababc3c6017f9489ef22bc9

# User provided section

Expand Down
1 change: 1 addition & 0 deletions packages/app/android/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ gradle-wrapper.jar
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
app/.cxx

# Remember to never publicly share your keystore.
# See https://flutter.dev/to/reference-keystore
Expand Down
2 changes: 2 additions & 0 deletions packages/app/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ targets:
- lib/src/features/*/application/*_service.dart
flutter_gen_runner:
# configs for the flutter.assets generator
options:
output: lib/src/gen/
generate_for:
- $package$
build_version:
Expand Down
4 changes: 4 additions & 0 deletions packages/app/devtools_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
description: This file stores settings for Dart & Flutter DevTools.
documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states
extensions:
- shared_preferences: true
4 changes: 3 additions & 1 deletion packages/app/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@
A1875B284FAC3155110F5C88 /* Pods-RunnerTests.release.xcconfig */,
76BC1DF72F1C3E93EF2B8D97 /* Pods-RunnerTests.profile.xcconfig */,
);
name = Pods;
path = Pods;
sourceTree = "<group>";
};
Expand Down Expand Up @@ -472,6 +471,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 74PS3AKU3K;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
Expand Down Expand Up @@ -656,6 +656,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 74PS3AKU3K;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
Expand All @@ -678,6 +679,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
DEVELOPMENT_TEAM = 74PS3AKU3K;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = Runner/Info.plist;
LD_RUNPATH_SEARCH_PATHS = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
enableGPUValidationMode = "1"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
Expand Down
Loading
Loading