Skip to content

Commit

Permalink
fixes-minor
Browse files Browse the repository at this point in the history
  • Loading branch information
ARYPROGRAMMER committed Oct 8, 2024
1 parent d44ec11 commit de9b43b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,13 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
tag: v2.0.9.1
tag: v2.0.9.2
token: ${{ secrets.TOKEN }}
name: "beta-v2.0.9.1"
name: "beta-v2.0.9.2"
body: |
## What's New in v2.0.9.1
## What's New in v2.0.9.2
- Improved Error Handlers.
- **Redis Cloud Implementation and Fetching in Beta Phase**
- **Structure of Redis added to Clean Architecture
- **Added Redis-base to support syncfusion**
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<a href="https://github.com/ARYPROGRAMMER/Mindful-App/actions">
<img src="https://github.com/travisjeffery/timecop/workflows/CI/badge.svg" alt="Build Status"/>
</a>
<img src="https://img.shields.io/badge/version-2.0.9.1-green" alt="Version"/>
<img src="https://img.shields.io/badge/version-2.0.9.2-red" alt="Version"/>
</p>

<p align="center">
Expand All @@ -17,8 +17,9 @@

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

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

- Improved Error Handlers.
- **Redis Cloud Implementation and Fetching in Beta Phase**
- **Structure of Redis added to Clean Architecture
- **Added Redis-base to support syncfusion**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ class _MeditationPageState extends State<MeditationPage> {
}

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

Expand Down
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class _MyAppState extends State<MyApp> {
final idval;
bool google = mybox.get('google').toString() == 'true';
if (google) {
idval = "${GoogleSignInApi.details()?.email}-google";
idval = "aryasingh8405Ggmail.com-google"; //temp
}else{
idval = FirebaseAuth.instance.currentUser?.email.toString();
}
Expand Down

0 comments on commit de9b43b

Please sign in to comment.