Skip to content

Commit

Permalink
updated version to 1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
br0ck-w00d committed Sep 18, 2024
1 parent dc700ea commit ca29494
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
14 changes: 8 additions & 6 deletions magic/lib/presentation/ui/canvas/menu/settings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,14 @@ class ImportItem extends StatelessWidget {

@override
Widget build(BuildContext context) => GestureDetector(
onTap: () => cubits.welcome.update(
active: true,
child: LoginNative(
onFailure: () => cubits.welcome
.update(active: false, child: const SizedBox.shrink()),
child: const ImportPage())),
onTap: () =>
cubits.menu.update(active: true, child: const ImportPage()),
// onTap: () => cubits.welcome.update(
// active: true,
// child: LoginNative(
// onFailure: () => cubits.welcome
// .update(active: false, child: const SizedBox.shrink()),
// child: const ImportPage())),
child: Container(
height: screen.menu.itemHeight,
width: screen.width,
Expand Down
2 changes: 1 addition & 1 deletion magic/lib/presentation/ui/canvas/menu/submenus.dart
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ class AboutSubMenu extends StatelessWidget {
//Text('connection status: ${cubits.app.state.connection.name}',
// textAlign: TextAlign.center,
// style: AppText.body2.copyWith(color: Colors.white)),
Text('version 1.4.0-alpha',
Text('version 1.4.3-alpha',
textAlign: TextAlign.center,
style: AppText.body2.copyWith(color: Colors.white)),
])
Expand Down
2 changes: 1 addition & 1 deletion magic/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 1.4.0+8
version: 1.4.3+9

environment:
sdk: '>=3.3.0 <4.0.0'
Expand Down

0 comments on commit ca29494

Please sign in to comment.