Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
waozixyz committed Apr 25, 2024
1 parent 96f3c2f commit 7d46bbc
Show file tree
Hide file tree
Showing 12 changed files with 38 additions and 11 deletions.
4 changes: 3 additions & 1 deletion lib/i18n/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,7 @@


"sessions": "Sitzungen",
"graph": "Grafik"
"graph": "Grafik",
"breath_hold": "Atem anhalten"

}
4 changes: 3 additions & 1 deletion lib/i18n/en_US.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@


"sessions": "Sessions",
"graph": "Graph"
"graph": "Graph",
"breath_hold": "Breath hold"

}

4 changes: 3 additions & 1 deletion lib/i18n/es_ES.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,7 @@


"sessions": "Sesiones",
"graph": "Gráfica"
"graph": "Gráfica",
"breath_hold": "Retención de la respiración"

}
4 changes: 3 additions & 1 deletion lib/i18n/id_ID.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@
"error_exporting_data": "Kesalahan dalam mengekspor data: ",

"sessions": "Sesi",
"graph": "Grafik"
"graph": "Grafik",
"breath_hold": "Tahan napas"

}

4 changes: 3 additions & 1 deletion lib/i18n/it_IT.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@


"sessions": "Sessioni",
"graph": "Grafico"
"graph": "Grafico",
"breath_hold": "Trattenimento del respiro"

}

8 changes: 8 additions & 0 deletions lib/screens/exercise/exercise_step2.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:inner_breeze/providers/user_provider.dart';
import 'package:inner_breeze/shared/breeze_style.dart';
import 'package:inner_breeze/widgets/stop_session.dart';
import 'package:inner_breeze/widgets/stopwatch.dart';
import 'package:go_router/go_router.dart';
Expand Down Expand Up @@ -86,6 +87,13 @@ class _ExerciseStep2State extends State<ExerciseStep2> {
body: SafeArea(
child: Column(
children: [
Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
'breath_hold'.i18n(),
style: BreezeStyle.header,
),
),
Expanded(
child: Center(
child: Padding(
Expand Down
4 changes: 2 additions & 2 deletions lib/widgets/graph_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ class GraphView extends StatefulWidget {
});

@override
_GraphViewState createState() => _GraphViewState();
GraphViewState createState() => GraphViewState();
}

class _GraphViewState extends State<GraphView> {
class GraphViewState extends State<GraphView> {
List<BarChartGroupData> _generateBarGroups() {
List<BarChartGroupData> barGroups = [];

Expand Down
4 changes: 2 additions & 2 deletions lib/widgets/session_list_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ class SessionListView extends StatefulWidget {
});

@override
_SessionListViewState createState() => _SessionListViewState();
SessionListViewState createState() => SessionListViewState();
}

class _SessionListViewState extends State<SessionListView> {
class SessionListViewState extends State<SessionListView> {
Widget _buildMonthSection(
String monthYearKey, Map<String, List<Session>> sessionsByDay) {
DateTime monthYear = DateFormat('yyyy-MM').parse(monthYearKey);
Expand Down
2 changes: 2 additions & 0 deletions metadata/en-US/changelogs/29.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Improve bar chart

7 changes: 7 additions & 0 deletions metadata/io.naox.InnerBreeze.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@
<icon type="remote" height="144" width="144">https://raw.githubusercontent.com/naoxio/inner_breeze/main/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png</icon>
<update_contact>[email protected]</update_contact>
<releases>
<release version="1.3.1" date="2024-04-26">
<description>
<ul>
<li>Improve bar chart</li>
</ul>
</description>
</release>
<release version="1.3.0" date="2024-04-23">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: A meditation and breathing guide app

publish_to: 'none'

version: 1.3.0+28
version: 1.3.1+29

environment:
sdk: '>=2.19.4 <4.0.0'
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: inner-breeze
adopt-info: inner-breeze

version: '1.3.0'
version: '1.3.1'
license: MIT
grade: stable
base: core22
Expand Down

0 comments on commit 7d46bbc

Please sign in to comment.