Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed deprecated functions, widgets and solved some issues #186

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
a69ba86
test: Added tests for api service
buildwithmalik Sep 3, 2022
acfcb3b
feat: Added Firebase analytics and crashlytics
buildwithmalik Sep 5, 2022
938c70f
feat: Added environment variables for sensitive info
buildwithmalik Sep 5, 2022
f8d8a1e
Create .env
buildwithmalik Sep 5, 2022
e5f9b55
Delete .env (#171)
buildwithmalik Sep 10, 2022
7ab6cb0
Updating version (#172)
buildwithmalik Sep 10, 2022
e3758c0
Adding example for .env file and updating workflow checks (#181)
buildwithmalik Mar 4, 2023
72cab51
Updating workflow checks (#183)
buildwithmalik Mar 4, 2023
624ff51
formatted files
manoj1749 Mar 4, 2023
635bd98
replaced deprecated FlatButton
manoj1749 Mar 4, 2023
94d66d5
replaced toggleableActiveColor with switchThemeData
manoj1749 Mar 4, 2023
05bffd4
replaced toggleableActiveColor with switchThemeData
manoj1749 Mar 4, 2023
28d3c33
replaced deprecated features
manoj1749 Mar 4, 2023
4608cf1
replaced deprecated features
manoj1749 Mar 4, 2023
6971fb2
replaced deprecated features
manoj1749 Mar 4, 2023
21ca26f
resolved ModalBottomSheetRoute issue for `flutter test`
manoj1749 Mar 4, 2023
18f59f5
Merge branch 'main' into develop
manoj1749 Mar 4, 2023
3abe602
Merge pull request #2 from manoj1749/develop
manoj1749 Mar 4, 2023
09428aa
Update pubspec.lock
manoj1749 Mar 4, 2023
7d437ee
Revert "Update pubspec.lock"
manoj1749 Mar 4, 2023
928336f
Revert "Merge pull request #2 from manoj1749/develop"
manoj1749 Mar 4, 2023
ffcc335
Revert "Merge branch 'main' into develop"
manoj1749 Mar 4, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .env

This file was deleted.

3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ The project is a flutter application for ruTorrent web interface. The app commun

Additionally, you can also stream torrents from your server (or seedbox) and download them locally to your mobile device (a save offline feature), which makes torrenting a seamless experience for ruTorrent users.

## Download App
<a href="https://play.google.com/store/apps/details?id=org.ccextractor.rutorrentflutter"><img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png" width="200"></img></a>

## ruTorrent and rtorrent

<img src="https://raw.githubusercontent.com/CCExtractor/rutorrent-flutter/master/rutorrent.jpeg" alt="ruTorrent Web" height=100px>
Expand Down
6 changes: 3 additions & 3 deletions lib/firebase_options.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ class DefaultFirebaseOptions {
static FirebaseOptions android = FirebaseOptions(
apiKey: dotenv.env['apiKey'] ?? "",
appId: dotenv.env['appId'] ?? "",
messagingSenderId: dotenv.env['messagingSenderId'] ?? "",
projectId: dotenv.env['projectId'] ?? "",
storageBucket: dotenv.env['storageBucket'] ?? "",
messagingSenderId: (dotenv.env['messagingSenderId']) ?? "",
projectId: (dotenv.env['projectId']) ?? "",
storageBucket: (dotenv.env['storageBucket']) ?? "",
);

static FirebaseOptions ios = FirebaseOptions(
Expand Down