Skip to content

Commit de9b43b

Browse files
committed
fixes-minor
1 parent d44ec11 commit de9b43b

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,13 @@ jobs:
6060
uses: ncipollo/release-action@v1
6161
with:
6262
artifacts: "build/app/outputs/apk/release/*"
63-
tag: v2.0.9.1
63+
tag: v2.0.9.2
6464
token: ${{ secrets.TOKEN }}
65-
name: "beta-v2.0.9.1"
65+
name: "beta-v2.0.9.2"
6666
body: |
67-
## What's New in v2.0.9.1
67+
## What's New in v2.0.9.2
6868
69+
- Improved Error Handlers.
6970
- **Redis Cloud Implementation and Fetching in Beta Phase**
7071
- **Structure of Redis added to Clean Architecture
7172
- **Added Redis-base to support syncfusion**

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<a href="https://github.com/ARYPROGRAMMER/Mindful-App/actions">
55
<img src="https://github.com/travisjeffery/timecop/workflows/CI/badge.svg" alt="Build Status"/>
66
</a>
7-
<img src="https://img.shields.io/badge/version-2.0.9.1-green" alt="Version"/>
7+
<img src="https://img.shields.io/badge/version-2.0.9.2-red" alt="Version"/>
88
</p>
99

1010
<p align="center">
@@ -17,8 +17,9 @@
1717

1818
**APP STATUS** : ALL CORE FUNCTIONALITIES WORKING (Deployed NodeJs & Postgresql on Render)
1919

20-
## What's New in v2.0.9.1 (Beta Trial Phase for Redis)
20+
## What's New in v2.0.9.2 (Beta Trial Phase for Redis)
2121

22+
- Improved Error Handlers.
2223
- **Redis Cloud Implementation and Fetching in Beta Phase**
2324
- **Structure of Redis added to Clean Architecture
2425
- **Added Redis-base to support syncfusion**

lib/features/meditation/presentation/pages/meditation_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ class _MeditationPageState extends State<MeditationPage> {
807807
}
808808

809809
if (state is MoodDataError){
810-
return Text(state.message);
810+
return const Text("No Data Found",textAlign:TextAlign.center,style: TextStyle(color: Colors.red,fontWeight: FontWeight.bold),);
811811
}
812812
return Container();
813813

lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class _MyAppState extends State<MyApp> {
5959
final idval;
6060
bool google = mybox.get('google').toString() == 'true';
6161
if (google) {
62-
idval = "${GoogleSignInApi.details()?.email}-google";
62+
idval = "aryasingh8405Ggmail.com-google"; //temp
6363
}else{
6464
idval = FirebaseAuth.instance.currentUser?.email.toString();
6565
}

0 commit comments

Comments
 (0)