Skip to content

Commit dcff0de

Browse files
committed
bug-fixes
1 parent 88fd46f commit dcff0de

File tree

4 files changed

+27
-16
lines changed

4 files changed

+27
-16
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ jobs:
3838
uses: ncipollo/release-action@v1
3939
with:
4040
artifacts: "build/app/outputs/apk/release/*"
41-
tag: v2.0.5
41+
tag: v2.0.5.1
4242
token: ${{ secrets.TOKEN }}
4343
name: "stable-v2.0.5"
4444
body: |
45-
## What's New in v2.0.5
45+
## What's New in v2.0.5.1
4646
4747
- **New Feature**: Fast Login with Oauth2 independent of Firebase.
48-
- **Bug Fixes**: Resolved major bugs pertaining to memory leaks & getting ready for syncfusion.
48+
- **Bug Fixes**: Resolved major bugs pertaining to login & signup leaks & getting ready for syncfusion.
4949
- **Performance Improvements**: Optimized the load response times.
5050
- **UI Enhancements**: Updated the home UI and added more animations.
5151

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![Mindful-App](https://socialify.git.ci/ARYPROGRAMMER/Mindful-App/image?description=1&descriptionEditable=Mindful%20is%20a%20mental%20wellness%20app%20designed%20to%20support%20users%20in%20managing%20stress%20and%20anxiety&font=Source%20Code%20Pro&language=1&name=1&owner=1&pattern=Diagonal%20Stripes&stargazers=1&theme=Dark)
22

33
[![Build Status](https://github.com/travisjeffery/timecop/workflows/CI/badge.svg)](https://github.com/ARYPROGRAMMER/Mindful-App/actions)
4-
![version](https://img.shields.io/badge/version-2.0.5-blue)
4+
![version](https://img.shields.io/badge/version-2.0.5.1-blue)
55

66
<p align="center">
77
<img src="https://img.shields.io/badge/firebase-ffca28?style=for-the-badge&logo=firebase&logoColor=black"/>
@@ -12,14 +12,14 @@
1212

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

15-
## What's New in v2.0.5 (**Images in Readme.md Not Updated**)
15+
## What's New in v2.0.5.1 (**Images in readme.md Not Updated**)
1616
- **New Feature**: Fast Login with Oauth2 independent of Firebase.
17-
- **Bug Fixes**: Resolved major bugs pertaining to memory leaks & getting ready for syncfusion.
17+
- **Bug Fixes**: Resolved major bugs pertaining to login & signup leaks & getting ready for syncfusion.
1818
- **Performance Improvements**: Optimized the load response times.
1919
- **UI Enhancements**: Updated the home UI and added more animations.
20-
- **ADDED HIVE AND OAUTH2 WITH COMPLETE INTEGRITY added SIGNATURE SHA-1**.
2120

2221
[DEMO LINK](https://vimeo.com/1013864504)
22+
2323
[Blog Post](https://dev.to/aryprogrammer/building-mindful-a-mental-wellness-app-with-nodejs-ai-and-clean-architecture-3n9d)
2424

2525
# Mindful

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

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ class MeditationPage extends StatelessWidget {
3434
actions: [
3535
CircleAvatar(
3636
backgroundImage: user1 != null
37-
? NetworkImage(user1.photoURL!)
37+
? user1.photoURL != null
38+
? NetworkImage(user1.photoURL!)
39+
: const NetworkImage(
40+
"https://pbs.twimg.com/media/F3tVQbJWUAEOXJB.jpg:large")
3841
: NetworkImage(user2!.photoUrl!),
3942
),
4043
const SizedBox(
@@ -55,13 +58,21 @@ class MeditationPage extends StatelessWidget {
5558
Container(
5659
width: MediaQuery.of(context).size.width / 1.7,
5760
child: user1 != null
58-
? Text(
59-
"Welcome Back, ${user1.displayName}",
60-
softWrap: true,
61-
maxLines: 2,
62-
overflow: TextOverflow.clip,
63-
style: Theme.of(context).textTheme.titleLarge,
64-
)
61+
? user1.displayName != null
62+
? Text(
63+
"Welcome Back, ${user1.displayName}",
64+
softWrap: true,
65+
maxLines: 2,
66+
overflow: TextOverflow.clip,
67+
style: Theme.of(context).textTheme.titleLarge,
68+
)
69+
: Text(
70+
"Welcome Back, User",
71+
softWrap: true,
72+
maxLines: 2,
73+
overflow: TextOverflow.clip,
74+
style: Theme.of(context).textTheme.titleLarge,
75+
)
6576
: Text(
6677
"Welcome Back, ${user2?.displayName}",
6778
softWrap: true,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1616
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1717
# In Windows, build-name is used as the major, minor, and patch parts
1818
# of the product and file versions while build-number is used as the build suffix.
19-
version: 2.0.5
19+
version: 2.0.5.1
2020

2121
environment:
2222
sdk: ^3.5.3

0 commit comments

Comments
 (0)