Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen Asraf committed Jun 30, 2020
1 parent 9327f8a commit 95ccc8f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ android {
multiDexEnabled true

// VERSION
versionCode 42
versionName "1.1.6+5"
versionCode 43
versionName "1.1.7"
}

// flavorDimensions "version"
Expand Down
15 changes: 11 additions & 4 deletions lib/src/pages/scaffold/sidebar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,11 @@ class _SidebarState extends State<Sidebar> {

void aboutScreen(BuildContext context) {
Navigator.pop(context);
openPage(ScreenNames.About, context, builder: (context) => AboutView());
openPage(
ScreenNames.About,
context,
builder: (context) => AboutView(),
);
}

Widget title(String text, BuildContext context, {Widget leading}) {
Expand All @@ -192,7 +196,8 @@ class _SidebarState extends State<Sidebar> {
DefaultTextStyle(
child: leading,
style: titleStyle.copyWith(
color: Theme.of(context).textTheme.headline3.color),
color: Theme.of(context).textTheme.headline3.color,
),
),
],
);
Expand Down Expand Up @@ -247,8 +252,10 @@ class CharacterListTile extends StatelessWidget {
);
}

static List<Widget> list(Iterable<Character> characters,
{String selectedId}) =>
static List<Widget> list(
Iterable<Character> characters, {
String selectedId,
}) =>
characters
.map((character) => CharacterListTile(
key: Key(character.documentID),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ packages:
name: dungeon_world_data
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.5+5"
version: "2.0.5+6"
fake_async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies:
wheel_spinner: ^0.0.6
# wheel_spinner:
# path: ../wheel_spinner
dungeon_world_data: ^2.0.5+5
dungeon_world_data: ^2.0.5+6
# dungeon_world_data:
# path: ../dw_data
# Firebase/Firestore
Expand Down

0 comments on commit 95ccc8f

Please sign in to comment.