Skip to content

Commit

Permalink
7.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
j-kaltes committed Oct 30, 2023
1 parent 2d4e346 commit a600d84
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ android {

// targetSdk 26
//****** Zet op rollout op 100% ******
versionCode 423 //LIBRE2ONLY
versionName '7.1.5-no3'
versionCode 425 //LIBRE2ONLY
versionName '7.1.6-no3'
dimension 'libreVersion'
buildConfigField 'int', 'libreVersion', '2'
}
Expand All @@ -88,9 +88,9 @@ android {
minSdk 26
// minSdk 23
dimension 'libreVersion'
versionCode 423 //LIBRE3
versionCode 425 //LIBRE3
//****** Zet op rollout op 100% ******
versionName '7.1.5'
versionName '7.1.6'

buildConfigField 'int', 'libreVersion', '3'
externalNativeBuild.cmake {
Expand All @@ -107,9 +107,9 @@ android {
// targetSdk 30
dimension 'wearos'
minSdk 26
versionCode 424 //WATCH
versionCode 426 //WATCH
//****** Zet op rollout op 100% ******
versionName '7.1.5-wear'
versionName '7.1.6-wear'
signingConfig signingConfigs.alg

// buildConfigField 'int', 'targetSDK', "$targetSdk"
Expand Down
4 changes: 4 additions & 0 deletions Common/src/main/cpp/share/hooks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,13 @@ struct pthread_arg {
void * origarg;
};
static void ioreadyhandler(int sig) {
#ifndef NOLOG
pid_t pid= syscall(SYS_getpid);
pid_t tid= syscall(SYS_gettid);
char buf[80];
prctl(PR_GET_NAME, buf, 0, 0, 0);
LOGGER("SIGCHLD pid=%d tid=%d %s\n",pid,tid,buf);
#endif
}
#ifdef FINDHANDLE
#include <destruct.h>
Expand Down Expand Up @@ -244,8 +246,10 @@ extern "C" VISIBLE int pthread_Detach(pthread_t thread) {
return res;
}
void *pstart_routine( void * arg) {
#ifndef NOLOG
signal(SIGCHLD,ioreadyhandler);
LOGAR("pstart_routine");
#endif
pthread_arg *myarg=reinterpret_cast<pthread_arg *>(arg);
void *res=myarg->start_routine(myarg->origarg);
endroutine=true;
Expand Down
3 changes: 3 additions & 0 deletions Common/src/main/java/tk/glucodata/BUGS
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Changing speaker werkt niet goed.
Voorlees lijst item onduidelijk. Oplossing:
tijd na datum
Beperk aantal connecties webserver?
Resend data wordt niet doorgezonden.

Expand Down
1 change: 1 addition & 0 deletions Common/src/mobile/java/tk/glucodata/Talker.java
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ public void onNothingSelected (AdapterView<?> parent) {
var talk=SuperGattCallback.talker;
if(talk!=null) {
talk.setvalues();
talk.setvoice();
talk.speak(say);
return;
}
Expand Down

0 comments on commit a600d84

Please sign in to comment.