From 7e89f79e414013d181f3de1497a73120b52cba6a Mon Sep 17 00:00:00 2001 From: hu8813 Date: Wed, 17 Jul 2024 08:38:57 +0200 Subject: [PATCH 1/2] renamed Batt_50.webp to batt_50.webp to fix error in Linux (case sensitive) --- images/battery/{Batt_50.webp => batt_50.webp} | Bin 1 file changed, 0 insertions(+), 0 deletions(-) rename images/battery/{Batt_50.webp => batt_50.webp} (100%) diff --git a/images/battery/Batt_50.webp b/images/battery/batt_50.webp similarity index 100% rename from images/battery/Batt_50.webp rename to images/battery/batt_50.webp From 8f172872d739e7216bdee542259184d36136774d Mon Sep 17 00:00:00 2001 From: hu8813 Date: Fri, 27 Sep 2024 11:34:19 +0200 Subject: [PATCH 2/2] fix: void func can not return. flutter gave error --- lib/flutter/blue_plus_mockable.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/flutter/blue_plus_mockable.dart b/lib/flutter/blue_plus_mockable.dart index f860f02..20d431b 100644 --- a/lib/flutter/blue_plus_mockable.dart +++ b/lib/flutter/blue_plus_mockable.dart @@ -56,7 +56,7 @@ class FlutterBluePlusMockable { } void setLogLevel(LogLevel level, {color = true}) { - return FlutterBluePlus.setLogLevel(level, color: color); + FlutterBluePlus.setLogLevel(level, color: color); } LogLevel get logLevel {