Skip to content

Commit

Permalink
Added support to AMR-WB and AMR-WB+ recordings (fixes #96)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicorac committed Mar 6, 2024
1 parent 02c4ccb commit 368f77f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Version history

## Version 1.6.1 (2024-03-07)

New features:

- Added support to AMR-WB and AMR-WB+ recordings (fixes #96)

## Version 1.6.0 (2024-02-29)

New features:
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ android {
targetSdkVersion rootProject.ext.targetSdkVersion
// version parts: M = Major, m = minor, b = build
// -------- MMMmmmbbb
versionCode 001006000
versionName "1.6.0"
versionCode 001006001
versionName "1.6.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
4 changes: 3 additions & 1 deletion src/app/services/settings.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,16 @@ export class SettingsService {
//#endregion

/**
* Supported file types
* Supported file MIME types
*/
public readonly supportedTypes: string[] = [
'audio/flac',
'audio/mpeg',
'audio/ogg',
'audio/x-wav',
'audio/amr',
'audio/amr-wb',
'audio/amr-wb+',
];

/**
Expand Down

0 comments on commit 368f77f

Please sign in to comment.