Skip to content

Commit

Permalink
Update build and version number; change log
Browse files Browse the repository at this point in the history
  • Loading branch information
cohenadair committed Oct 10, 2024
1 parent 4668106 commit 67bb109
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
1 change: 1 addition & 0 deletions mobile/lib/i18n/english_strings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1319,5 +1319,6 @@ Map<String, Map<String, String>> get englishStrings => {
"changeLog_2.7.0_16": "The \"Skunked\" stamp now says \"Blanked\" for UK users.",
"changeLog_2.7.1_1": "Tide chart now shows y-axis labels in the correct unit.",
"changeLog_2.7.1_2": "Fixed issue where some catch photos would be removed after an app update.",
"changeLog_2.7.2_1": "Fixed crash when opening external links."
},
};
2 changes: 2 additions & 0 deletions mobile/lib/i18n/strings.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2548,6 +2548,8 @@ class Strings {
String get changeLog_271_1 => _string("changeLog_2.7.1_1");

String get changeLog_271_2 => _string("changeLog_2.7.1_2");

String get changeLog_272_1 => _string("changeLog_2.7.2_1");
}

class StringsDelegate extends LocalizationsDelegate<Strings> {
Expand Down
18 changes: 17 additions & 1 deletion mobile/lib/pages/onboarding/change_log_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class ChangeLogPage extends StatelessWidget {
),
),
const VerticalSpace(paddingDefault),
_build2_7_2(context),
_build2_7_1(context),
_build2_7_0(context),
_build2_6_0(context),
Expand All @@ -57,10 +58,25 @@ class ChangeLogPage extends StatelessWidget {
);
}

Widget _build2_7_2(BuildContext context) {
return ExpansionListItem(
title: Text(_buildVersionText(context, "2.7.2")),
isExpanded: true,
children: [
BulletList(
padding: insetsHorizontalDefaultBottomDefault,
items: {
BulletListItem(Strings.of(context).changeLog_272_1),
},
),
],
);
}

Widget _build2_7_1(BuildContext context) {
return ExpansionListItem(
title: Text(_buildVersionText(context, "2.7.1")),
isExpanded: true,
isExpanded: false,
children: [
BulletList(
padding: insetsHorizontalDefaultBottomDefault,
Expand Down
2 changes: 1 addition & 1 deletion mobile/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: Track, analyze, and share your catches in the sport of fishing.
#
# Both numbers must be incremented for Android. DO NOT add any suffix to the date, such as ".2". The
# period will be removed on Google Play and builds with lower numbers cannot be uploaded.
version: 2.7.1+2024081201
version: 2.7.2+2024101001
publish_to: none

environment:
Expand Down

0 comments on commit 67bb109

Please sign in to comment.