Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
a625209
Update README.md
FJiangArthur Jun 12, 2025
e2ad2f5
refactor: consolidate conversation context models and extract Speaker…
art-jiang Jun 13, 2025
068ab16
feat: refactor conversation contexts and add shared Speaker model
art-jiang Jun 13, 2025
f34ce8b
refactor: consolidate conversation context types and migrate Speaker …
art-jiang Jun 13, 2025
d11a477
feat: add Speaker model and enhance model conformance to standard pro…
art-jiang Jun 14, 2025
1b5abff
feat: introduce Speaker model and refactor speaker-related components…
art-jiang Jun 14, 2025
659c2b9
feat: introduce shared Speaker model and refactor diarization components
art-jiang Jun 14, 2025
a46a66d
add error handling UI and make speaker models codable
art-jiang Jun 14, 2025
dd06130
Fix build issue and allowed Helix build within Simulator
art-jiang Jun 15, 2025
240351f
Modified debug launcher config
art-jiang Jun 15, 2025
27d301f
feat: implement audio format conversion and fix speech recognition er…
art-jiang Jun 17, 2025
73f2fe9
1. Real-time Transcription Display - Shows live transcription in ora…
art-jiang Jun 17, 2025
65dcee1
feat: add live transcription UI and remote Whisper backend support
art-jiang Jun 23, 2025
ab37e3b
feat: add speech backend switching with comprehensive tests and error…
art-jiang Jun 23, 2025
ed28e0a
feat: implement audio sensitivity improvements and add Noop service i…
art-jiang Jun 23, 2025
39d9a07
feat: implement Provider-based state management and fix compilation i…
art-jiang Jul 13, 2025
5a388ea
feat: complete Phase 1 - Flutter foundation and core architecture
art-jiang Jul 13, 2025
4734896
fix: resolve all build errors and complete buildable Flutter foundation
art-jiang Jul 13, 2025
ed4a10c
feat: implement comprehensive transcription service with speech_to_text
art-jiang Jul 13, 2025
44637a7
feat: enhance AudioManager with recording storage and playback history
art-jiang Jul 13, 2025
502eb9f
feat: complete Phase 3 - comprehensive UI enhancement and polish
art-jiang Jul 14, 2025
81db826
docs: add comprehensive testing strategy and Flutter best practices
art-jiang Jul 14, 2025
4526306
test: implement testing infrastructure and audio service unit tests
art-jiang Jul 14, 2025
f0bccef
test: add comprehensive unit tests for transcription and LLM services
art-jiang Jul 14, 2025
3c3e57c
test: add comprehensive unit tests for glasses service implementation
art-jiang Jul 16, 2025
69b7106
build: update iOS and macOS project files and dependencies
art-jiang Jul 16, 2025
92a4a82
test: fix glasses service tests to match actual implementation
art-jiang Jul 16, 2025
9cddd38
test: fix glasses service tests to match actual implementation
art-jiang Jul 16, 2025
02adb91
build: update test infrastructure with working mock generation
art-jiang Jul 16, 2025
bc3a5ae
feat: recording and UI improvements
art-jiang Jul 17, 2025
c37ece1
fix: build errors in conversation tab
art-jiang Jul 17, 2025
82e4c88
fix recording functionality - real audio levels, proper timer, dynami…
art-jiang Jul 17, 2025
f1aa062
feat(logging): enhance logging service with file output and performan…
art-jiang Jul 18, 2025
f0ca821
fix: resolve permission request flow and implement real audio level d…
art-jiang Jul 18, 2025
f2f52be
feat: add devtools options and enhance permission handling
art-jiang Jul 18, 2025
5517aac
feat: Restructure
art-jiang Aug 3, 2025
ff51c24
chore: remove .gitmodules file
art-jiang Aug 3, 2025
e81e690
chore: remove outdated implementation and planning documents
art-jiang Aug 3, 2025
3da6439
This epic focuses on fixing the broken AudioService implementation th…
art-jiang Aug 3, 2025
0535cc8
fix bug for ios26
art-jiang Aug 3, 2025
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
49 changes: 48 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,48 @@
AGENT.md

.vscode/settings.json

# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.build/
.buildlog/
.history
.svn/
.swiftpm/
migrate_working_dir/

# 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
.pub-cache/
.pub/
/build/

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
9 changes: 0 additions & 9 deletions .gitmodules

This file was deleted.

45 changes: 45 additions & 0 deletions .metadata
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# 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: "c23637390482d4cf9598c3ce3f2be31aa7332daf"
channel: "stable"

project_type: app

# Tracks metadata for the flutter migrate command
migration:
platforms:
- platform: root
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
- platform: android
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
- platform: ios
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
- platform: linux
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
- platform: macos
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
- platform: web
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
- platform: windows
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf

# User provided section

# List of Local paths (relative to this file) that should be
# ignored by the migrate tool.
#
# Files that are not part of the templates will be ignored by default.
unmanaged_files:
- 'lib/main.dart'
- 'ios/Runner.xcodeproj/project.pbxproj'
Loading