Skip to content

Commit

Permalink
major-functionality-additions
Browse files Browse the repository at this point in the history
  • Loading branch information
ARYPROGRAMMER committed Oct 12, 2024
1 parent 04c1349 commit aa5bb06
Show file tree
Hide file tree
Showing 11 changed files with 243 additions and 85 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,21 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "build/app/outputs/apk/release/*"
tag: v2.1.1
tag: v2.1.2
token: ${{ secrets.TOKEN }}
name: "beta-v2.1.1"
name: "stable-v2.1.2"
body: |
## What's New in v2.1.1
## What's New in v2.1.2
- **Settings Tab is now Better and Accessible**
- **Improved AI Chat Functionality**
- **Redis DS Change - HashMaps**
- **Minor Bug fixes**
- **Crash Handlers are improved**
- **Improved Overall Performance - Implemented Impeller**
- **Settings Tab is now Better**
- **Redis connection fixes and data privacy improvised**
- **Redis Cloud Implementation and Fetching in Beta Phase**
- **Added Redis-base to support syncfusion**
- **New Feature**: Implemented Syncfusion and Redis for low latency**
### Known Issues are Resolved - Redis Full-Integration Phase 3
### Issues are being Resolved - Redis Full-Integration Phase 3
15 changes: 10 additions & 5 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.1.1-green" alt="Version"/>
<img src="https://img.shields.io/badge/version-2.1.2-green" alt="Version"/>
</p>

<p align="center">
Expand All @@ -17,15 +17,20 @@

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

## What's New in v2.1.1 (Beta Phase for Redis) (Use Stable Version for Best Experience)
## What's New in v2.1.2 (**Stable Release with Redis Phase 3 Integration**)

- **Settings Tab is now Better and Accessible**
- **Improved AI Chat Functionality**
- **Redis DS Change - HashMaps**
- **Minor Bug fixes**
- **Crash Handlers are improved**
- **Improved Overall Performance - Implemented Impeller**
- **Settings Tab is now Better**
- **Redis connection fixes and data privacy improvised**
- **Redis Cloud Implementation and Fetching in Beta Phase**
- **Added Redis-base to support syncfusion**
- **New Feature**: Implemented Syncfusion and Redis for low latency**

### Known Issues are Resolved - Redis Full-Integration Phase 3
### Issues are being Resolved - Redis Full-Integration Phase 3

[DEMO LINK OF WORKING](https://vimeo.com/1016496824?share=copy)

Expand Down
3 changes: 3 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="io.flutter.embedding.android.EnableImpeller"
android:value="true" />
<meta-data
android:name="flutterEmbedding"
android:value="2" />
Expand Down
Binary file added assets/background_model.mp4
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class _MeditationPageState extends State<MeditationPage> {
child: SizedBox(
height: 20,
child: LottieBuilder.network(
"https://lottie.host/7f8fdd94-95c4-4a11-90bb-edc15af41005/jVxlzL8zAW.json"),
'https://lottie.host/b4a596fb-3b74-403a-ba62-94e56dd1662c/n0wCMuhZKw.json'),
),
),
),
Expand Down Expand Up @@ -328,7 +328,7 @@ class _MeditationPageState extends State<MeditationPage> {
dataSources!.clear();
__chartData!.clear();
_annotationSources!.clear();
}catch(error){}
} catch (error) {}

super.dispose();
}
Expand Down Expand Up @@ -910,7 +910,6 @@ class _MeditationPageState extends State<MeditationPage> {
}

if (state is MoodDataError) {
print(state.message);
return const Text(
"No Data Found",
textAlign: TextAlign.center,
Expand Down
22 changes: 11 additions & 11 deletions lib/features/meditation/presentation/pages/settingscreen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ class SettingScreen extends StatefulWidget {
}

class _SettingScreenState extends State<SettingScreen> {

Future<void>? _launched;

@override
Expand Down Expand Up @@ -72,7 +71,7 @@ class _SettingScreenState extends State<SettingScreen> {
body: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 25.0, vertical: 60.0),
padding: const EdgeInsets.symmetric(horizontal: 25.0, vertical: 20.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
Expand Down Expand Up @@ -166,15 +165,15 @@ class _SettingScreenState extends State<SettingScreen> {
width: 10,
),
GestureDetector(
onTap: (){

final Uri toLaunch =
Uri(scheme: 'https', host: 'www.postgresql.org',path: '/');
onTap: () {
final Uri toLaunch = Uri(
scheme: 'https',
host: 'www.postgresql.org',
path: '/');
setState(() {
_launched = _launchInAppWithBrowserOptions(toLaunch);
});
},

child: const SizedBox(
width: 200,
child: Text(
Expand Down Expand Up @@ -210,10 +209,11 @@ class _SettingScreenState extends State<SettingScreen> {
width: 10,
),
GestureDetector(
onTap: (){

final Uri toLaunch =
Uri(scheme: 'https', host: 'docs.llama-api.com',path: '/essentials/chat');
onTap: () {
final Uri toLaunch = Uri(
scheme: 'https',
host: 'docs.llama-api.com',
path: '/essentials/chat');
setState(() {
_launched = _launchInAppWithBrowserOptions(toLaunch);
});
Expand Down
6 changes: 2 additions & 4 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,10 @@ class _inPageState extends State<inPage> {
myboxx.put('google', 'true');
first.put("firsttime", 'false');
String? value = GoogleSignInApi.details()?.email;
print(value);

try {
context.read<MoodDataBloc>().add(FetchMoodData("${value}-google"));
} catch (error) {
print(error);
}
} catch (error) {}
Navigator.pushAndRemoveUntil(
context,
MaterialPageRoute(builder: (BuildContext context) => HomePage()),
Expand Down
Loading

0 comments on commit aa5bb06

Please sign in to comment.