Skip to content

Commit

Permalink
Closed version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nicorac committed Jan 5, 2024
1 parent 0e256be commit 5950bcc
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Version history

## Version 1.0.0 (2024-01-05)

App is now stable and (almost) feature-complete, so it's time to switch to a **full** version number 😉.

New features:

- New features to synchronize recordings with phone Contacts, accessible with the **pencil icon** within each recording:

- **create a new contact** with recording phone number \
(to be used after recording a call from an unknown contact)
- **search existing contact** with recording phone number \
(to be used if you've already created the contact after recording the call)
- **manual edit** \
(if you changed your mind in both cases 🙄)

## Version 0.0.25 (2023-12-31)

Bug fixes:
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ BCR-GUI is a _companion app_ for the great [BCR](https://github.com/chenxiaolong

<img src="docs/images/screenshot-main.jpg?nocache=1" height="600px">


To manage BCR call recordings, you actually need to use a file manager... and thats not so user-friendly 😉.
It's hard to "extract" call informations from audio filename, and its even harder to search them when the list grows.

Expand All @@ -24,6 +23,9 @@ BCR-GUI needs **BCR v.1.49** (or newer) to work at its best, because it needs th
- It **does not need Internet access** at all. \
_NOTE:_ this may change in the future if an auto-update feature will be added, but actually the app can't send/receive anything to/from internet.

- It needs **Contacts** permission only if you need to synchronize recordings
names with contacts **after** recording a call from an unknown caller.

## What's working/missing?

BCR-GUI is still in early development stage, but its already usable!
Expand All @@ -34,6 +36,10 @@ Working:
- **play**: play each call recording straight from the list (no external player needed)
- **share**: share recording file with other apps, like messaging, email, ...
- **delete**: delete recordings
- **create a new contact** with recording phone number \
(to be used after recording a call from an unknown contact)
- **search contact with recording phone number** \
(to be used if you've already created the contact after recording the call)

Still missing (not ready yet...):

Expand Down
6 changes: 4 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ android {
applicationId "com.github.nicorac.bcrgui"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 25
versionName "0.0.25"
// version parts: M = Major, m = minor, b = build
// -------- MMMmmmbbb
versionCode 001000000
versionName "1.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down

0 comments on commit 5950bcc

Please sign in to comment.