Skip to content
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
8 changes: 4 additions & 4 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Project Overview

EmerKit is a cross-platform Flutter app with 24 clinical tools for emergency healthcare professionals. Developed by Global Emergency (globalemergency.online).
EmerKit is a cross-platform Flutter app with 25 clinical tools for emergency healthcare professionals. Developed by Global Emergency (globalemergency.online).

- **Package name**: `online.globalemergency.emerkit`
- **Dart package**: `emerkit`
Expand Down Expand Up @@ -37,7 +37,7 @@ Before every push, run these commands **in order**. All must pass:
```bash
dart format . # 1. Format - must have 0 changes
flutter analyze # 2. Lint - must have 0 issues (no warnings, no info)
flutter test # 3. Test - all 86+ tests must pass
flutter test # 3. Test - all 130+ tests must pass
bash scripts/propagate-version.sh --check # 4. Version sync check
```

Expand All @@ -49,7 +49,7 @@ If you change app code (`lib/`, `assets/`, `pubspec.yaml`), you MUST bump `versi
dart format . # Format all code
dart format --set-exit-if-changed . # Check format (CI mode)
flutter analyze # Static analysis (0 issues required)
flutter test # Run all tests (86+)
flutter test # Run all tests (130+)
flutter build apk --debug # Debug APK
flutter build apk --release # Release APK
flutter pub get # Install dependencies
Expand Down Expand Up @@ -189,4 +189,4 @@ All tools are registered in `lib/features/home/presentation/tool_registry.dart`

Conventional Commits: `<type>(<scope>): <description>`
- Types: `feat`, `fix`, `test`, `docs`, `refactor`, `ci`, `chore`
- Scopes: `glasgow`, `triage`, `ictus`, `o2`, `rcp`, `tep`, `nihss`, `rankin`, `shared`, `ci`, `docs`, `ui`
- Scopes: `glasgow`, `triage`, `ictus`, `o2`, `rcp`, `tep`, `nihss`, `rankin`, `respiratory-rate`, `shared`, `ci`, `docs`, `ui`
2 changes: 1 addition & 1 deletion assets/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "0.1.7"}
{"version": "0.1.8"}
7 changes: 6 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: emerkit
description: EmerKit - Herramientas clinicas para profesionales de emergencias
publish_to: 'none'
version: 0.1.7+107
version: 0.1.8+108

environment:
sdk: ^3.5.0
Expand All @@ -13,6 +13,11 @@ dependencies:
audioplayers: ^6.1.0
url_launcher: ^6.3.1

dependency_overrides:
# Pin to avoid objective_c native assets issue in Flutter 3.41.x iOS CI
# See: https://github.com/flutter/flutter/issues/178915
path_provider_foundation: 2.4.0

dev_dependencies:
flutter_test:
sdk: flutter
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "0.1.7"}
{"version": "0.1.8"}
Loading