Skip to content

Commit 793592a

Browse files
0.4.1
- The `apps list` now has 12 positions for name.
1 parent d1a3f00 commit 793592a

5 files changed

Lines changed: 9 additions & 6 deletions

File tree

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=OSP ReusableApps aoapps
2-
version=0.4.0
2+
version=0.4.1
33
author=ams-OSRAM
44
maintainer=ams-OSRAM
55
sentence=A library with reusable "apps" for OSP chains.

license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*****************************************************************************
2-
* Copyright 2024 by ams OSRAM AG *
2+
* Copyright 2024-2026 by ams OSRAM AG *
33
* All rights are reserved. *
44
* *
55
* IMPORTANT - PLEASE READ CAREFULLY BEFORE COPYING, INSTALLING OR USING *

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -401,6 +401,9 @@ of the OSP chain, without app telegrams interfering.
401401
402402
## Version history _aoapps_
403403
404+
- **2026 April 29 , 0.4.1**
405+
- The `apps list` now has 12 positions for name.
406+
404407
- **2025 September 17, 0.4.0**
405408
- Updated documentation.
406409
- `aoapps_swflag.cpp` switched to new driver `aomw_iox4b4l`; it also supports selector SAIDsense (next to the one on SAIDbasic).

src/aoapps.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424

2525
// Identifies lib version
26-
#define AOAPPS_VERSION "0.4.0"
26+
#define AOAPPS_VERSION "0.4.1"
2727

2828

2929
// Include the (headers of the) modules of this app

src/aoapps_mngr.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// aoapps_mngr.cpp - apps manager (records the entry functions associated with all registered apps)
22
/*****************************************************************************
3-
* Copyright 2024 by ams OSRAM AG *
3+
* Copyright 2024-2026 by ams OSRAM AG *
44
* All rights are reserved. *
55
* *
66
* IMPORTANT - PLEASE READ CAREFULLY BEFORE COPYING, INSTALLING OR USING *
@@ -566,13 +566,13 @@ static void aoapps_mngr_cmd_listone(int appix) {
566566
if( aoapps_mngr_apps[appix].flags & AOAPPS_MNGR_FLAGS_WITHREPAIR ) flags[2]='R';
567567
if( aoapps_mngr_apps[appix].flags & AOAPPS_MNGR_FLAGS_NEXTONERR ) flags[3]='E';
568568
const char* oled= aoapps_mngr_app_oled(appix);
569-
Serial.printf("%1d %-10s %-4s %-5s %s\n",appix,name,mode,flags,oled);
569+
Serial.printf("%1d %-12s %-4s %-5s %s\n",appix,name,mode,flags,oled);
570570
}
571571

572572

573573
// Lists all apps (with status)
574574
static void aoapps_mngr_cmd_listall(int verbose) {
575-
if( verbose ) Serial.printf("# %-10s %-4s %5s %s\n","name","mode","flags","display name");
575+
if( verbose ) Serial.printf("# %-12s %-4s %5s %s\n","name","mode","flags","display name");
576576
for( int appix=0; appix<aoapps_mngr_app_count(); appix++ )
577577
aoapps_mngr_cmd_listone(appix);
578578
if( verbose ) Serial.printf("\nflags: H=hidden T=withtopo R=withrepair, E=nextonerr\n");

0 commit comments

Comments
 (0)