From cb0ec11ffbda9cae6f6281fd087e2bfb8c25fb19 Mon Sep 17 00:00:00 2001 From: yoochanhong Date: Sat, 2 Mar 2024 14:48:44 +0900 Subject: [PATCH 1/3] =?UTF-8?q?fix=20::=20CurrentState=20enum=20=EC=88=9C?= =?UTF-8?q?=EC=84=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/main.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index 92c9d1e7..077fbc4e 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -60,16 +60,16 @@ class MyApp extends StatelessWidget { } enum CurrentState { - available( - icon: LoturaIcons.checkCircle, - color: LoturaColors.green50, - deepColor: LoturaColors.green700, - text: "사용 가능"), working( icon: LoturaIcons.working, color: LoturaColors.primary50, deepColor: LoturaColors.primary700, text: "작동중"), + available( + icon: LoturaIcons.checkCircle, + color: LoturaColors.green50, + deepColor: LoturaColors.green700, + text: "사용 가능"), disconnected( icon: LoturaIcons.disconnected, color: LoturaColors.white, From afa960712bce35e23ff98055c9e42a1701f86b33 Mon Sep 17 00:00:00 2001 From: yoochanhong Date: Sat, 2 Mar 2024 14:52:55 +0900 Subject: [PATCH 2/3] =?UTF-8?q?chore=20::=20=ED=94=8C=EB=9F=AC=ED=84=B0=20?= =?UTF-8?q?=EC=95=B1=20=EB=B2=84=EC=A0=84=20=EC=97=85=EB=8D=B0=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 272b40ce..6e685ccc 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 3.3.3+14 +version: 3.3.4+15 environment: sdk: '>=3.1.3 <4.0.0' From 8cc2dc6cbb96f43a22d456ac176d822c90dac19b Mon Sep 17 00:00:00 2001 From: yoochanhong Date: Sat, 2 Mar 2024 14:53:03 +0900 Subject: [PATCH 3/3] =?UTF-8?q?chore=20::=20=EC=95=88=EB=93=9C=EB=A1=9C?= =?UTF-8?q?=EC=9D=B4=EB=93=9C=20=EC=95=B1=20=EB=B2=84=EC=A0=84=20=EC=97=85?= =?UTF-8?q?=EB=8D=B0=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 439aaf15..7ab9dafd 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -13,12 +13,12 @@ if (flutterRoot == null) { def flutterVersionCode = localProperties.getProperty('flutter.versionCode') if (flutterVersionCode == null) { - flutterVersionCode = '14' + flutterVersionCode = '15' } def flutterVersionName = localProperties.getProperty('flutter.versionName') if (flutterVersionName == null) { - flutterVersionName = '3.3.3' + flutterVersionName = '3.3.4' } def keystoreProperties = new Properties()