From 8beb955abf535937ac82075e2d8acb40cc7b9aef Mon Sep 17 00:00:00 2001 From: Bo Lopker Date: Mon, 11 Dec 2023 08:51:16 -0800 Subject: [PATCH] Announcment --- annoucment.md | 4 ++-- lib/main.dart | 7 ++++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/annoucment.md b/annoucment.md index 7631738..50e6378 100644 --- a/annoucment.md +++ b/annoucment.md @@ -1,3 +1,3 @@ -Hey everyone! Creator of Superduper (https://github.com/blopker/superduper) here, the alternative app for your Super73 bike. I wanted to announce a new version was just released, 0.3.0 (32). Aside from updating various dependencies, including a major performance improvement on iOS, I've added the ability to delete bikes from the app. This is useful if you have a bike that you no longer have access to, or if you want to remove a bike from the app to make it easier to find the bike you want to connect to. Go to the bike you want to delete and tap the "Edit" button. There should be a "Delete" button at the bottom of the page. +Hey friends! Creator of Superduper (https://github.com/blopker/superduper) here, the alternative app for your Super73 bike. I wanted to announce a new version was just released, 0.4.0 (34). Aside from updating various dependencies, you can now change the colors of the app's buttons to match your bike more closely 🔥🌈. Let me know what you think! -The update should now be ready in TestFlight (https://testflight.apple.com/join/Tl0UibRY) and Google Play (https://play.google.com/store/apps/details?id=io.kbl.superduper). If you have any issues, please let me know here or on GitHub (https://github.com/blopker/superduper/issues). Happy riding! +The update should now be ready in TestFlight (https://testflight.apple.com/join/Tl0UibRY) and soon on Google Play (https://play.google.com/store/apps/details?id=io.kbl.superduper). If you have any issues, please let me know here or on GitHub (https://github.com/blopker/superduper/issues). Happy riding! diff --git a/lib/main.dart b/lib/main.dart index bb910da..025e671 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -1,17 +1,17 @@ import 'dart:io'; import 'dart:ui'; +import 'package:device_info_plus/device_info_plus.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; import 'package:permission_handler/permission_handler.dart'; import 'package:superduper/bike.dart'; +import 'package:superduper/db.dart' as perf; +import 'package:superduper/debug.dart'; import 'package:superduper/saved_bike.dart'; import 'package:superduper/select_page.dart'; -import 'package:superduper/debug.dart'; -import 'package:superduper/db.dart' as perf; -import 'package:device_info_plus/device_info_plus.dart'; void main() async { WidgetsFlutterBinding.ensureInitialized(); @@ -57,6 +57,7 @@ class SuperDuper extends StatelessWidget { statusBarColor: Colors.transparent, statusBarBrightness: Brightness.dark)); return MaterialApp( + debugShowCheckedModeBanner: false, title: 'SuperDuper', theme: ThemeData( colorSchemeSeed: Colors.black,