mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
new: no titlebar on desktop
This commit is contained in:
@@ -25,8 +25,7 @@ enum SSHErrType {
|
||||
}
|
||||
|
||||
class SSHErr extends Err<SSHErrType> {
|
||||
SSHErr({required super.type, super.message})
|
||||
: super(from: ErrFrom.ssh);
|
||||
SSHErr({required super.type, super.message}) : super(from: ErrFrom.ssh);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
@@ -47,8 +46,7 @@ enum DockerErrType {
|
||||
}
|
||||
|
||||
class DockerErr extends Err<DockerErrType> {
|
||||
DockerErr({required super.type, super.message})
|
||||
: super(from: ErrFrom.docker);
|
||||
DockerErr({required super.type, super.message}) : super(from: ErrFrom.docker);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
@@ -63,8 +61,7 @@ enum ICloudErrType {
|
||||
}
|
||||
|
||||
class ICloudErr extends Err<ICloudErrType> {
|
||||
ICloudErr({required super.type, super.message})
|
||||
: super(from: ErrFrom.icloud);
|
||||
ICloudErr({required super.type, super.message}) : super(from: ErrFrom.icloud);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
@@ -79,8 +76,7 @@ enum WebdavErrType {
|
||||
}
|
||||
|
||||
class WebdavErr extends Err<WebdavErrType> {
|
||||
WebdavErr({required super.type, super.message})
|
||||
: super(from: ErrFrom.webdav);
|
||||
WebdavErr({required super.type, super.message}) : super(from: ErrFrom.webdav);
|
||||
|
||||
@override
|
||||
String toString() {
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
|
||||
class BuildData {
|
||||
static const String name = "ServerBox";
|
||||
static const int build = 665;
|
||||
static const int build = 667;
|
||||
static const String engine = "3.16.2";
|
||||
static const String buildAt = "2023-12-05 18:58:17";
|
||||
static const int modifications = 1;
|
||||
static const String buildAt = "2023-12-09 14:56:57";
|
||||
static const int modifications = 11;
|
||||
static const int script = 31;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user