Skip to content

Commit

Permalink
bug-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ARYPROGRAMMER committed Oct 5, 2024
1 parent 88fd46f commit dcff0de
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
tag: v2.0.5
tag: v2.0.5.1
token: ${{ secrets.TOKEN }}
name: "stable-v2.0.5"
body: |
## What's New in v2.0.5
## What's New in v2.0.5.1
- **New Feature**: Fast Login with Oauth2 independent of Firebase.
- **Bug Fixes**: Resolved major bugs pertaining to memory leaks & getting ready for syncfusion.
- **Bug Fixes**: Resolved major bugs pertaining to login & signup leaks & getting ready for syncfusion.
- **Performance Improvements**: Optimized the load response times.
- **UI Enhancements**: Updated the home UI and added more animations.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![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)

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

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

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

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

[DEMO LINK](https://vimeo.com/1013864504)

[Blog Post](https://dev.to/aryprogrammer/building-mindful-a-mental-wellness-app-with-nodejs-ai-and-clean-architecture-3n9d)

# Mindful
Expand Down
27 changes: 19 additions & 8 deletions lib/features/meditation/presentation/pages/meditation_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ class MeditationPage extends StatelessWidget {
actions: [
CircleAvatar(
backgroundImage: user1 != null
? NetworkImage(user1.photoURL!)
? user1.photoURL != null
? NetworkImage(user1.photoURL!)
: const NetworkImage(
"https://pbs.twimg.com/media/F3tVQbJWUAEOXJB.jpg:large")
: NetworkImage(user2!.photoUrl!),
),
const SizedBox(
Expand All @@ -55,13 +58,21 @@ class MeditationPage extends StatelessWidget {
Container(
width: MediaQuery.of(context).size.width / 1.7,
child: user1 != null
? Text(
"Welcome Back, ${user1.displayName}",
softWrap: true,
maxLines: 2,
overflow: TextOverflow.clip,
style: Theme.of(context).textTheme.titleLarge,
)
? user1.displayName != null
? Text(
"Welcome Back, ${user1.displayName}",
softWrap: true,
maxLines: 2,
overflow: TextOverflow.clip,
style: Theme.of(context).textTheme.titleLarge,
)
: Text(
"Welcome Back, User",
softWrap: true,
maxLines: 2,
overflow: TextOverflow.clip,
style: Theme.of(context).textTheme.titleLarge,
)
: Text(
"Welcome Back, ${user2?.displayName}",
softWrap: true,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 2.0.5
version: 2.0.5.1

environment:
sdk: ^3.5.3
Expand Down

0 comments on commit dcff0de

Please sign in to comment.