Skip to content

Commit 338d15a

Browse files
committed
#731: Update change log; build number
1 parent f6a29e1 commit 338d15a

4 files changed

Lines changed: 29 additions & 2 deletions

File tree

mobile/lib/i18n/english_strings.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,5 +1350,8 @@ Map<String, Map<String, String>> get englishStrings => {
13501350
"changeLog_2.7.3_6": "Fixed crash starting GPS trails.",
13511351
"changeLog_2.7.3_7": "Fixed cut off text on stats bar charts.",
13521352
"changeLog_2.7.4_1": "Fixed issue adding text to some text fields.",
1353+
"changeLog_2.7.5_1": "Fixed the decimal being removed from a catch's weight.",
1354+
"changeLog_2.7.5_2": "Fixed some incorrect rounding of water temperatures.",
1355+
"changeLog_2.7.5_3": "Added a \"not importable\" warning to CSV exporting.",
13531356
},
13541357
};

mobile/lib/i18n/strings.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2579,6 +2579,12 @@ class Strings {
25792579
String get changeLog_273_7 => _string("changeLog_2.7.3_7");
25802580

25812581
String get changeLog_274_1 => _string("changeLog_2.7.4_1");
2582+
2583+
String get changeLog_275_1 => _string("changeLog_2.7.5_1");
2584+
2585+
String get changeLog_275_2 => _string("changeLog_2.7.5_2");
2586+
2587+
String get changeLog_275_3 => _string("changeLog_2.7.5_3");
25822588
}
25832589

25842590
class StringsDelegate extends LocalizationsDelegate<Strings> {

mobile/lib/pages/onboarding/change_log_page.dart

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class ChangeLogPage extends StatelessWidget {
3333
),
3434
),
3535
const VerticalSpace(paddingDefault),
36+
_build2_7_5(context),
3637
_build2_7_4(context),
3738
_build2_7_3(context),
3839
_build2_7_2(context),
@@ -60,10 +61,27 @@ class ChangeLogPage extends StatelessWidget {
6061
);
6162
}
6263

64+
Widget _build2_7_5(BuildContext context) {
65+
return ExpansionListItem(
66+
title: Text(_buildVersionText(context, "2.7.5")),
67+
isExpanded: true,
68+
children: [
69+
BulletList(
70+
padding: insetsHorizontalDefaultBottomDefault,
71+
items: {
72+
BulletListItem(Strings.of(context).changeLog_275_1),
73+
BulletListItem(Strings.of(context).changeLog_275_2),
74+
BulletListItem(Strings.of(context).changeLog_275_3),
75+
},
76+
),
77+
],
78+
);
79+
}
80+
6381
Widget _build2_7_4(BuildContext context) {
6482
return ExpansionListItem(
6583
title: Text(_buildVersionText(context, "2.7.4")),
66-
isExpanded: true,
84+
isExpanded: false,
6785
children: [
6886
BulletList(
6987
padding: insetsHorizontalDefaultBottomDefault,

mobile/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: Track, analyze, and share your catches in the sport of fishing.
1010
#
1111
# Both numbers must be incremented for Android. DO NOT add any suffix to the date, such as ".2". The
1212
# period will be removed on Google Play and builds with lower numbers cannot be uploaded.
13-
version: 2.7.4+2025022001
13+
version: 2.7.5+2025042901
1414
publish_to: none
1515

1616
environment:

0 commit comments

Comments
 (0)