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

Lara #8

Merged
merged 34 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
09edb22
update gradle
laramcd Dec 16, 2023
1e0f3d3
javadoc and clarifying comments for all Main
laramcd Jan 2, 2024
b87bc19
Formatting and Removing VoiceProcessing for now
laramcd Jan 2, 2024
402e01b
add speedRate
laramcd Jan 2, 2024
77e26d1
javadoc and clarifying comments for all GroceryList
laramcd Jan 2, 2024
ebd0f1f
formatting
laramcd Jan 2, 2024
ef4701f
javadoc and clarifying comments for all PlaceDetailsX
laramcd Jan 2, 2024
4a91a94
formatting
laramcd Jan 2, 2024
0a890bb
formatting
laramcd Jan 2, 2024
bb7e019
javadoc and clarifying comments for all Settings
laramcd Jan 2, 2024
8b15021
javadoc and clarifying comments for utilities
laramcd Jan 2, 2024
ed8546e
basic voice control functionality added to MainActivity
laramcd Jan 3, 2024
cd10042
modifications to TTS and STT
laramcd Jan 3, 2024
ddb715a
modification to STT
laramcd Jan 3, 2024
2bdd458
modification to TTS
laramcd Jan 3, 2024
c64fd1c
modifications in accordance with new TTS/STT
laramcd Jan 3, 2024
d3915d2
complete voice control functionality for Grocery List
laramcd Jan 3, 2024
e660588
added coroutines plugin
laramcd Jan 3, 2024
2aa9600
formatting
laramcd Jan 4, 2024
6b66d36
complete voice control functionality for Place Details
laramcd Jan 4, 2024
cd2b53e
formatting
laramcd Jan 4, 2024
42648e0
complete voice control functionality for Settings
laramcd Jan 4, 2024
5abd34b
refactoring
laramcd Jan 4, 2024
d4aaba3
navToActivity(context, activityType) now a utility function
laramcd Jan 4, 2024
915fa97
comments and refactoring in Settings
laramcd Jan 4, 2024
7af73a9
added more translations
laramcd Jan 12, 2024
08e49fe
Created Feature Sheets
laramcd Jan 12, 2024
41cbf35
refactored executeNavigationCommand
laramcd Jan 12, 2024
c75cbe0
added missing documentation
laramcd Jan 12, 2024
6642be3
cleaned up string resources
laramcd Jan 12, 2024
45384ee
fixed bugs in German commands
laramcd Jan 12, 2024
ae16c35
ci: use java version 8
mhaeming Jan 15, 2024
e73f122
Merge branch 'main' into lara
mhaeming Jan 15, 2024
a81fbbc
ci: update java to version 17
mhaeming Jan 15, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup JDK
uses: actions/[email protected]
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: gradle

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/debug_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup JDK
uses: actions/[email protected]
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Create local gradle properties files
Expand Down
Binary file added Feature Sheets.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,7 @@ dependencies {

// Places API
implementation 'com.google.android.libraries.places:places:3.2.0'

implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9")

}
Loading