Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashishbeck committed Mar 15, 2022
1 parent f539224 commit e07be4c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/flutter_service_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ const RESOURCES = {
"icons/ms-icon-150x150.png": "38aceed2c86fd825d9638bf004a3580b",
"icons/ms-icon-310x310.png": "345ecd66e502447fd6f0ba67d326d022",
"icons/ms-icon-70x70.png": "50575ccdc19ea7ea6e2613dc49414f8d",
"index.html": "8f2d3add018b05e9d5e80fc2d29d229f",
"/": "8f2d3add018b05e9d5e80fc2d29d229f",
"main.dart.js": "9216d31f99b7a722df6319fe2f154b0c",
"index.html": "50e46e9436f8e7a6186a75ffe8ca613b",
"/": "50e46e9436f8e7a6186a75ffe8ca613b",
"main.dart.js": "74199ad7bbbf6cc7a825f048db907060",
"manifest.json": "0d6e25fcca270e342859e1fe47796797",
"version.json": "926859e2b5c4be6f4747fc5862c07050"
"version.json": "c8c7cf7f74ae5623c92c54932bacc677"
};

// The application shell files that are downloaded before a service worker can
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
application. For more information, see:
https://developers.google.com/web/fundamentals/primers/service-workers -->
<script>
var serviceWorkerVersion = '2947329838';
var serviceWorkerVersion = '4207864371';
var scriptLoaded = false;
function loadMainDartJs() {
if (scriptLoaded) {
Expand Down
2 changes: 1 addition & 1 deletion docs/main.dart.js
Original file line number Diff line number Diff line change
Expand Up @@ -70509,7 +70509,7 @@ s=m.d
if(s==null)s=l*0.8
r=m.e
if(r==null)r=k*0.8
r=j?r:r*0.5
r=j?r:r*0.75
m=j?k:l
q=t.Ni
p=A.b(this.e,"animation")
Expand Down
2 changes: 1 addition & 1 deletion docs/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"app_name":"slide_puzzle","version":"1.0.3","build_number":"22","package_name":"slide_puzzle"}
{"app_name":"slide_puzzle","version":"1.0.4","build_number":"23","package_name":"slide_puzzle"}
2 changes: 1 addition & 1 deletion lib/ui/dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class _MyDialogState extends State<MyDialog>
double height = widget.height ?? maxHeight * area;
// widget.height ?? (isTall ? maxWidth * area : maxHeight * area);
double width = widget.width ?? maxWidth * area;
width = isTall ? width : width * 0.5;
width = isTall ? width : width * 0.75;
return AlertDialog(
contentPadding: EdgeInsets.zero,
backgroundColor: Colors.transparent,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.0.3+22
version: 1.0.4+23

environment:
sdk: ">=2.15.1 <3.0.0"
Expand Down

0 comments on commit e07be4c

Please sign in to comment.