mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-23 18:36:50 +01:00
Amazfit Bip: fix long messages not being displayed at all
This commit is contained in:
parent
b87d9d649d
commit
acf779a8e4
@ -2,6 +2,7 @@
|
||||
|
||||
#### Version 0.21.1
|
||||
* Initial support for EXRIZU K8 (HPLus variant)
|
||||
* Amazfit Bip: fix long messages not being displayed at all
|
||||
* Mi Band 2: Support multiple button actions
|
||||
* NO.1 F1: Fetch sleep data
|
||||
* NO.1 F1: Heart rate support
|
||||
|
@ -80,7 +80,7 @@ public class AmazfitBipSupport extends MiBand2Support {
|
||||
try {
|
||||
TransactionBuilder builder = performInitialized("new notification");
|
||||
AlertNotificationProfile<?> profile = new AlertNotificationProfile(this);
|
||||
profile.setMaxLength(255); // TODO: find out real limit, certainly it is more than 18 which is default
|
||||
profile.setMaxLength(230);
|
||||
|
||||
int customIconId = AmazfitBipIcon.mapToIconId(notificationSpec.type);
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
<changelog>
|
||||
<release version="0.21.1" versioncode="102">
|
||||
<change>Initial support for EXRIZU K8 (HPLus variant)</change>
|
||||
<change>Amazfit Bip: fix long messages not being displayed at all</change>
|
||||
<change>Mi Band 2: Support multiple button actions</change>
|
||||
<change>NO.1 F1: Fetch sleep data</change>
|
||||
<change>NO.1 F1: Heart rate support</change>
|
||||
|
@ -1,4 +1,5 @@
|
||||
* Initial support for EXRIZU K8 (HPLus variant)
|
||||
* Amazfit Bip: fix long messages not being displayed at all
|
||||
* Mi Band 2: Support multiple button actions
|
||||
* NO.1 F1: Fetch sleep data
|
||||
* NO.1 F1: Heart rate support
|
||||
|
Loading…
Reference in New Issue
Block a user