Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeDoctorDE committed May 10, 2023
1 parent 48733ad commit 0a50eb9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 19 deletions.
2 changes: 1 addition & 1 deletion app/QeckSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ LicenseFile=..\LICENSE
;PrivilegesRequired=lowest
PrivilegesRequiredOverridesAllowed=
OutputDir=build\windows
OutputBaseFilename={#MyAppName}-Setup
OutputBaseFilename=linwoood-qeck-windows-setup
SetupIconFile={#RunnerSourceDir}\resources\app_icon.ico
Compression=lzma
SolidCompression=yes
Expand Down
12 changes: 7 additions & 5 deletions app/lib/pages/home/connect.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@ class ConnectGameDialog extends StatelessWidget {
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
StatefulBuilder(builder: (context, setState) => CheckboxListTile(
title: Text(AppLocalizations.of(context).secure),
value: secure,
onChanged: (value) => setState(() => secure = value ?? secure),
)),
StatefulBuilder(
builder: (context, setState) => CheckboxListTile(
title: Text(AppLocalizations.of(context).secure),
value: secure,
onChanged: (value) =>
setState(() => secure = value ?? secure),
)),
TextFormField(
decoration: InputDecoration(
labelText: AppLocalizations.of(context).address,
Expand Down
24 changes: 12 additions & 12 deletions app/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ packages:
dependency: transitive
description:
name: _fe_analyzer_shared
sha256: "8880b4cfe7b5b17d57c052a5a3a8cc1d4f546261c7cc8fbd717bd53f48db0568"
sha256: "405666cd3cf0ee0a48d21ec67e65406aad2c726d9fa58840d3375e7bdcd32a07"
url: "https://pub.dev"
source: hosted
version: "59.0.0"
version: "60.0.0"
analyzer:
dependency: transitive
description:
name: analyzer
sha256: a89627f49b0e70e068130a36571409726b04dab12da7e5625941d2c8ec278b96
sha256: "1952250bd005bacb895a01bf1b4dc00e3ba1c526cf47dca54dfe24979c65f5b3"
url: "https://pub.dev"
source: hosted
version: "5.11.1"
version: "5.12.0"
args:
dependency: transitive
description:
Expand Down Expand Up @@ -205,10 +205,10 @@ packages:
dependency: transitive
description:
name: ffi
sha256: a38574032c5f1dd06c4aee541789906c12ccaab8ba01446e800d9c5b79c4a978
sha256: ed5337a5660c506388a9f012be0288fb38b49020ce2b45fe1f8b8323fe429f99
url: "https://pub.dev"
source: hosted
version: "2.0.1"
version: "2.0.2"
file:
dependency: transitive
description:
Expand Down Expand Up @@ -712,10 +712,10 @@ packages:
dependency: transitive
description:
name: source_gen
sha256: b20e191de6964e98032573cecb1d2b169d96ba63fdb586d24dcd1003ba7e94f6
sha256: "378a173055cd1fcd2a36e94bf254786d6812688b5f53b6038a2fd180a5a5e210"
url: "https://pub.dev"
source: hosted
version: "1.3.0"
version: "1.3.1"
source_helper:
dependency: transitive
description:
Expand Down Expand Up @@ -792,18 +792,18 @@ packages:
dependency: transitive
description:
name: typed_data
sha256: "26f87ade979c47a150c9eaab93ccd2bebe70a27dc0b4b29517f2904f04eb11a5"
sha256: facc8d6582f16042dd49f2463ff1bd6e2c9ef9f3d5da3d9b087e244a7b564b3c
url: "https://pub.dev"
source: hosted
version: "1.3.1"
version: "1.3.2"
url_launcher:
dependency: "direct main"
description:
name: url_launcher
sha256: "75f2846facd11168d007529d6cd8fcb2b750186bea046af9711f10b907e1587e"
sha256: eb1e00ab44303d50dd487aab67ebc575456c146c6af44422f9c13889984c00f3
url: "https://pub.dev"
source: hosted
version: "6.1.10"
version: "6.1.11"
url_launcher_android:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion app/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies:
barcode: ^2.2.3
# Internal
flutter_bloc: ^8.1.2
url_launcher: ^6.1.10
url_launcher: ^6.1.11
freezed_annotation: ^2.2.0
# Information
http: ^0.13.6
Expand Down

1 comment on commit 0a50eb9

@vercel
Copy link

@vercel vercel bot commented on 0a50eb9 May 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

qeck – ./app

qeck-linwood.vercel.app
qeck-git-develop-linwood.vercel.app
qeck.vercel.app

Please sign in to comment.