diff --git a/android/app/src/main/kotlin/tech/lolli/toolbox/ForegroundService.kt b/android/app/src/main/kotlin/tech/lolli/toolbox/ForegroundService.kt index 66a5452d0..83dde45b0 100644 --- a/android/app/src/main/kotlin/tech/lolli/toolbox/ForegroundService.kt +++ b/android/app/src/main/kotlin/tech/lolli/toolbox/ForegroundService.kt @@ -4,41 +4,58 @@ import android.app.* import android.content.Intent import android.os.Build import android.os.IBinder +import android.util.Log class ForegroundService : Service() { private val chanId = "ForegroundServiceChannel" override fun onCreate() { super.onCreate() + Log.d("ForegroundService", "Service onCreate") createNotificationChannel() } override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int { - when (intent?.action) { + if (intent == null) { + Log.w("ForegroundService", "onStartCommand called with null intent") + stopForegroundService() + return START_NOT_STICKY + } + + val action = intent.action + Log.d("ForegroundService", "onStartCommand action=$action") + + return when (action) { "ACTION_STOP_FOREGROUND" -> { stopForegroundService() - return START_NOT_STICKY + START_NOT_STICKY } else -> { val notification = createNotification() startForeground(1, notification) - return START_STICKY + START_STICKY } } } - override fun onBind(intent: Intent): IBinder? { + override fun onBind(intent: Intent?): IBinder? { return null } private fun createNotificationChannel() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + val manager = getSystemService(NotificationManager::class.java) + if (manager == null) { + Log.e("ForegroundService", "Failed to get NotificationManager") + return + } val serviceChannel = NotificationChannel( chanId, - chanId, + "ForegroundServiceChannel", NotificationManager.IMPORTANCE_DEFAULT - ) - val manager = getSystemService(NotificationManager::class.java) + ).apply { + description = "For foreground service" + } manager.createNotificationChannel(serviceChannel) } } @@ -62,27 +79,33 @@ class ForegroundService : Service() { PendingIntent.FLAG_IMMUTABLE ) - return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { + val builder = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { Notification.Builder(this, chanId) - .setContentTitle("Server Box") - .setContentText("Open the app") - .setSmallIcon(R.mipmap.ic_launcher) - .setContentIntent(pendingIntent) - .addAction(android.R.drawable.ic_delete, "Stop", deletePendingIntent) - .build() } else { Notification.Builder(this) - .setContentTitle("Server Box") - .setContentText("Open the app") - .setSmallIcon(R.mipmap.ic_launcher) - .setContentIntent(pendingIntent) - .addAction(android.R.drawable.ic_delete, "Stop", deletePendingIntent) - .build() } + + return builder + .setContentTitle("Server Box") + .setContentText("Running in background") + .setSmallIcon(R.mipmap.ic_launcher) + .setContentIntent(pendingIntent) + .addAction(android.R.drawable.ic_delete, "Stop", deletePendingIntent) + .build() } - fun stopForegroundService() { - stopForeground(true) + private fun stopForegroundService() { + try { + stopForeground(true) + } catch (e: Exception) { + Log.e("ForegroundService", "Error stopping foreground: ${e.message}") + } stopSelf() + Log.d("ForegroundService", "ForegroundService stopped") + } + + override fun onDestroy() { + super.onDestroy() + Log.d("ForegroundService", "Service onDestroy") } } \ No newline at end of file diff --git a/android/app/src/main/kotlin/tech/lolli/toolbox/MainActivity.kt b/android/app/src/main/kotlin/tech/lolli/toolbox/MainActivity.kt index b0af63cc8..c22cda382 100644 --- a/android/app/src/main/kotlin/tech/lolli/toolbox/MainActivity.kt +++ b/android/app/src/main/kotlin/tech/lolli/toolbox/MainActivity.kt @@ -56,3 +56,4 @@ class MainActivity: FlutterFragmentActivity() { } } } + diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj index 8956ce4f3..425f715a3 100644 --- a/ios/Runner.xcodeproj/project.pbxproj +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -672,7 +672,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; ENABLE_BITCODE = NO; INFOPLIST_FILE = "Runner/Info-$(CONFIGURATION).plist"; @@ -682,7 +682,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; @@ -808,7 +808,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; ENABLE_BITCODE = NO; INFOPLIST_FILE = "Runner/Info-$(CONFIGURATION).plist"; @@ -818,7 +818,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; @@ -836,7 +836,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; ENABLE_BITCODE = NO; INFOPLIST_FILE = "Runner/Info-$(CONFIGURATION).plist"; @@ -846,7 +846,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox; PRODUCT_NAME = "$(TARGET_NAME)"; SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; @@ -867,7 +867,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; GCC_C_LANGUAGE_STANDARD = gnu11; GENERATE_INFOPLIST_FILE = YES; @@ -880,7 +880,7 @@ "@executable_path/Frameworks", "@executable_path/../../Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox.StatusWidget; @@ -906,7 +906,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; GCC_C_LANGUAGE_STANDARD = gnu11; GENERATE_INFOPLIST_FILE = YES; @@ -919,7 +919,7 @@ "@executable_path/Frameworks", "@executable_path/../../Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox.StatusWidget; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -942,7 +942,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; GCC_C_LANGUAGE_STANDARD = gnu11; GENERATE_INFOPLIST_FILE = YES; @@ -955,7 +955,7 @@ "@executable_path/Frameworks", "@executable_path/../../Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox.StatusWidget; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -978,7 +978,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_ASSET_PATHS = ""; DEVELOPMENT_TEAM = BA88US33G6; ENABLE_PREVIEWS = YES; @@ -990,7 +990,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox.WatchEnd; @@ -1019,7 +1019,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_ASSET_PATHS = ""; DEVELOPMENT_TEAM = BA88US33G6; ENABLE_PREVIEWS = YES; @@ -1031,7 +1031,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox.WatchEnd; PRODUCT_NAME = ServerBox; @@ -1057,7 +1057,7 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_ASSET_PATHS = ""; DEVELOPMENT_TEAM = BA88US33G6; ENABLE_PREVIEWS = YES; @@ -1069,7 +1069,7 @@ "$(inherited)", "@executable_path/Frameworks", ); - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox.WatchEnd; PRODUCT_NAME = ServerBox; diff --git a/lib/core/channel/bg_run.dart b/lib/core/channel/bg_run.dart index 05e237463..e020b93b8 100644 --- a/lib/core/channel/bg_run.dart +++ b/lib/core/channel/bg_run.dart @@ -8,11 +8,12 @@ abstract final class BgRunMC { _channel.invokeMethod('sendToBackground'); } + /// TODO: try fix the fn, then uncomment it and [stopService] static void startService() { - _channel.invokeMethod('startService'); + // _channel.invokeMethod('startService'); } static void stopService() { - _channel.invokeMethod('stopService'); + // _channel.invokeMethod('stopService'); } } diff --git a/lib/data/res/build_data.dart b/lib/data/res/build_data.dart index 3c5daec3c..0178ad5ea 100644 --- a/lib/data/res/build_data.dart +++ b/lib/data/res/build_data.dart @@ -3,6 +3,6 @@ abstract class BuildData { static const String name = "ServerBox"; - static const int build = 1110; + static const int build = 1117; static const int script = 59; } diff --git a/lib/view/page/server/top_bar.dart b/lib/view/page/server/top_bar.dart index 4ac4836ff..856cadfa5 100644 --- a/lib/view/page/server/top_bar.dart +++ b/lib/view/page/server/top_bar.dart @@ -18,28 +18,26 @@ final class _TopBar extends StatelessWidget implements PreferredSizeWidget { child: Row( mainAxisAlignment: MainAxisAlignment.spaceBetween, children: [ - Center( - child: InkWell( - borderRadius: BorderRadius.circular(13), - onTap: () { - SettingsPage.route.go(context); - }, - child: const Padding( - padding: EdgeInsets.symmetric(horizontal: 7, vertical: 3), - child: Row( - children: [ - Text( - BuildData.name, - style: TextStyle(fontSize: 19), - ), - SizedBox(width: 3), - Icon( - Icons.keyboard_arrow_right, - color: Colors.grey, - size: 17, - ), - ], - ), + InkWell( + borderRadius: BorderRadius.circular(13), + onTap: () { + SettingsPage.route.go(context); + }, + child: const Padding( + padding: EdgeInsets.symmetric(horizontal: 7, vertical: 3), + child: Row( + children: [ + Text( + BuildData.name, + style: TextStyle(fontSize: 19), + ), + SizedBox(width: 5), + Icon( + Icons.settings, + color: Colors.grey, + size: 17, + ), + ], ), ), ), diff --git a/lib/view/page/setting/entry.dart b/lib/view/page/setting/entry.dart index df5464e93..03e7afa3f 100644 --- a/lib/view/page/setting/entry.dart +++ b/lib/view/page/setting/entry.dart @@ -83,8 +83,8 @@ class _SettingsPageState extends State .toList(growable: false), ), actions: [ - Btn.icon( - icon: const Icon(Icons.developer_board), + Btn.text( + text: 'Logs', onTap: () => DebugPage.route.go( context, args: const DebugPageArgs(title: 'Logs(${BuildData.build})'), diff --git a/macos/Podfile.lock b/macos/Podfile.lock index 78ec0e123..454dab02c 100644 --- a/macos/Podfile.lock +++ b/macos/Podfile.lock @@ -3,18 +3,22 @@ PODS: - FlutterMacOS - dynamic_color (0.0.2): - FlutterMacOS + - flutter_inappwebview_macos (0.0.1): + - FlutterMacOS + - OrderedSet (~> 6.0.3) - FlutterMacOS (1.0.0) - icloud_storage (0.0.1): - FlutterMacOS - local_auth_darwin (0.0.1): - Flutter - FlutterMacOS + - OrderedSet (6.0.3) - package_info_plus (0.0.1): - FlutterMacOS - path_provider_foundation (0.0.1): - Flutter - FlutterMacOS - - screen_retriever (0.0.1): + - screen_retriever_macos (0.0.1): - FlutterMacOS - share_plus (0.0.1): - FlutterMacOS @@ -31,23 +35,30 @@ PODS: DEPENDENCIES: - app_links (from `Flutter/ephemeral/.symlinks/plugins/app_links/macos`) - dynamic_color (from `Flutter/ephemeral/.symlinks/plugins/dynamic_color/macos`) + - flutter_inappwebview_macos (from `Flutter/ephemeral/.symlinks/plugins/flutter_inappwebview_macos/macos`) - FlutterMacOS (from `Flutter/ephemeral`) - icloud_storage (from `Flutter/ephemeral/.symlinks/plugins/icloud_storage/macos`) - local_auth_darwin (from `Flutter/ephemeral/.symlinks/plugins/local_auth_darwin/darwin`) - package_info_plus (from `Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos`) - path_provider_foundation (from `Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin`) - - screen_retriever (from `Flutter/ephemeral/.symlinks/plugins/screen_retriever/macos`) + - screen_retriever_macos (from `Flutter/ephemeral/.symlinks/plugins/screen_retriever_macos/macos`) - share_plus (from `Flutter/ephemeral/.symlinks/plugins/share_plus/macos`) - shared_preferences_foundation (from `Flutter/ephemeral/.symlinks/plugins/shared_preferences_foundation/darwin`) - url_launcher_macos (from `Flutter/ephemeral/.symlinks/plugins/url_launcher_macos/macos`) - wakelock_plus (from `Flutter/ephemeral/.symlinks/plugins/wakelock_plus/macos`) - window_manager (from `Flutter/ephemeral/.symlinks/plugins/window_manager/macos`) +SPEC REPOS: + trunk: + - OrderedSet + EXTERNAL SOURCES: app_links: :path: Flutter/ephemeral/.symlinks/plugins/app_links/macos dynamic_color: :path: Flutter/ephemeral/.symlinks/plugins/dynamic_color/macos + flutter_inappwebview_macos: + :path: Flutter/ephemeral/.symlinks/plugins/flutter_inappwebview_macos/macos FlutterMacOS: :path: Flutter/ephemeral icloud_storage: @@ -58,8 +69,8 @@ EXTERNAL SOURCES: :path: Flutter/ephemeral/.symlinks/plugins/package_info_plus/macos path_provider_foundation: :path: Flutter/ephemeral/.symlinks/plugins/path_provider_foundation/darwin - screen_retriever: - :path: Flutter/ephemeral/.symlinks/plugins/screen_retriever/macos + screen_retriever_macos: + :path: Flutter/ephemeral/.symlinks/plugins/screen_retriever_macos/macos share_plus: :path: Flutter/ephemeral/.symlinks/plugins/share_plus/macos shared_preferences_foundation: @@ -74,15 +85,17 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: app_links: 10e0a0ab602ffaf34d142cd4862f29d34b303b2a dynamic_color: 2eaa27267de1ca20d879fbd6e01259773fb1670f + flutter_inappwebview_macos: bdf207b8f4ebd58e86ae06cd96b147de99a67c9b FlutterMacOS: 8f6f14fa908a6fb3fba0cd85dbd81ec4b251fb24 icloud_storage: 33b05299e26d1391d724da8d62860e702380a1cd local_auth_darwin: 66e40372f1c29f383a314c738c7446e2f7fdadc3 - package_info_plus: fa739dd842b393193c5ca93c26798dff6e3d0e0c + OrderedSet: e539b66b644ff081c73a262d24ad552a69be3a94 + package_info_plus: 12f1c5c2cfe8727ca46cbd0b26677728972d9a5b path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46 - screen_retriever: 59634572a57080243dd1bf715e55b6c54f241a38 - share_plus: 36537c04ce0c3e3f5bd297ce4318b6d5ee5fd6cf + screen_retriever_macos: 776e0fa5d42c6163d2bf772d22478df4b302b161 + share_plus: 1fa619de8392a4398bfaf176d441853922614e89 shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78 - url_launcher_macos: 5f437abeda8c85500ceb03f5c1938a8c5a705399 + url_launcher_macos: c82c93949963e55b228a30115bd219499a6fe404 wakelock_plus: 4783562c9a43d209c458cb9b30692134af456269 window_manager: 3a1844359a6295ab1e47659b1a777e36773cd6e8 diff --git a/macos/Runner.xcodeproj/project.pbxproj b/macos/Runner.xcodeproj/project.pbxproj index 3ce870d07..aea366559 100644 --- a/macos/Runner.xcodeproj/project.pbxproj +++ b/macos/Runner.xcodeproj/project.pbxproj @@ -471,7 +471,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; INFOPLIST_FILE = Runner/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Server Box"; @@ -481,7 +481,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox; PRODUCT_NAME = "Server Box"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -608,7 +608,7 @@ CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = BA88US33G6; INFOPLIST_FILE = Runner/Info.plist; INFOPLIST_KEY_CFBundleDisplayName = "Server Box"; @@ -618,7 +618,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox; PRODUCT_NAME = "Server Box"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -638,7 +638,7 @@ "CODE_SIGN_IDENTITY[sdk=macosx*]" = "3rd Party Mac Developer Application"; CODE_SIGN_STYLE = Manual; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1104; + CURRENT_PROJECT_VERSION = 1117; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=macosx*]" = BA88US33G6; INFOPLIST_FILE = Runner/Info.plist; @@ -649,7 +649,7 @@ "@executable_path/../Frameworks", ); MACOSX_DEPLOYMENT_TARGET = 10.15; - MARKETING_VERSION = 1.0.1110; + MARKETING_VERSION = 1.0.1117; PRODUCT_BUNDLE_IDENTIFIER = com.lollipopkit.toolbox; PRODUCT_NAME = "Server Box"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/macos/Runner/AppDelegate.swift b/macos/Runner/AppDelegate.swift index 8e02df288..b3c176141 100644 --- a/macos/Runner/AppDelegate.swift +++ b/macos/Runner/AppDelegate.swift @@ -6,4 +6,8 @@ class AppDelegate: FlutterAppDelegate { override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { return true } + + override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { + return true + } } diff --git a/pubspec.lock b/pubspec.lock index e3d326c31..b7f4873bb 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -478,8 +478,8 @@ packages: dependency: "direct main" description: path: "." - ref: "v1.0.223" - resolved-ref: "89178383d5df27534576b05aef6b51aec84086a0" + ref: "v1.0.224" + resolved-ref: ce532383b50fd3bfe74017a2799510c014b0f4f4 url: "https://github.com/lppcg/fl_lib" source: git version: "0.0.1" diff --git a/pubspec.yaml b/pubspec.yaml index 2a1d11b14..0c7193de5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: server_box description: server status & toolbox app. publish_to: 'none' -version: 1.0.1110+1110 +version: 1.0.1117+1117 environment: sdk: ">=3.0.0" @@ -63,7 +63,7 @@ dependencies: fl_lib: git: url: https://github.com/lppcg/fl_lib - ref: v1.0.223 + ref: v1.0.224 dependency_overrides: # dartssh2: